### AIM To create a simple web page using HTML that demonstrates the use of image, checkbox inputs, radio button inputs, and anchor tags. ### ALGORITHM 1. Start the HTML document using the `` declaration. 2. Create the basic structure of the web page using the ``, ``, and `` elements. 3. Inside the `` section, insert an image using the `` tag and set the source attribute to `"logo.svg"`. 4. Add at least two checkbox inputs. The labels or text for the checkboxes can be of the user's choice. 5. Add at least two radio button inputs. The labels or options for the radio buttons can be of the user's choice. 6. Create an anchor element using the `` tag that links to: `https://drmgrdu.codetantra.com/`. The text displayed for the link can be of the user's choice. Add the `target="_blank"` attribute. 7. Close all the opened HTML tags properly. ### PROGRAM HTML ``` Simple Web Page Website Logo






Visit Codetantra ``` ### OUTPUT The webpage displays the image, two checkboxes, two radio buttons, and a hyperlink to the CodeTantra website. Web Design - Main Record (1).pdf ### RESULT Thus, the HTML program to create a webpage that includes an image, checkboxes, radio buttons, and a hyperlink is executed successfully, and the output is verified.