SOP 1 : Write a program using HTML with following specifications.
z The background colour should be green.
z The text colour should be red.
z The heading should be large in size as 'My First Web Page'.
z Display a horizontal line after the heading.
z Display your name in Bold, address in Italics and standard as 11th .
Answers
Answered by
3
Explanation:
<html>
<head>
</head>
<body style="background-color:powderblue;">
<p><font color="red">This is some text</font></p>
<h1>My first web page</h1>
<hr>
<p><b>This text is bold</b></p>
<p><i>This text is bold</i></p>
<p>Standard :11</p>
</body>
</html>
Answered by
1
Answer:
<html>
<body bgcolor="green">
<font color="ff0000">
<h1>My First Web Page</h1> <br>
<hr>
<b>Your Name</b> <br>
<i>Address</i> <br>
<p>standard:11</p>
</body>
</html>
Explanation:
Similar questions