COMP SOLUTION 8
COMP SOLUTION 8
Subject – Computers
Session 2024-25
Chapter – 8: Solutions
1. Create the heading "My First Web Page" in the center of the page using the
highest heading level.
Page | 1
<h1 style="text-align: center;">My First Web Page</h1>
<style>
a:visited { color: orange; }
</style>
<sub>Text as subscript</sub>
Page | 2
2. What are tag attributes? Give examples.
Tag attributes provide additional information about HTML elements. They are placed
inside the opening tag. Example:
Here, src is the attribute specifying the image source, and alt provides alternative
text for the image.
Page | 3