11th Class . IT(Information Technology) Skill Set 2 - HTML -5 . Sop-1
STD: 11th. Subject: IT(Information Technology)
Web Designing (HTML - 5)
Skill Set 2 - HTML -5
SOP 1 : Write a program using HTML with following specifications.
The background colour should be green.
The text colour should be red.
The heading should be large in size as 'My First Web Page'.
Display a horizontal line after the heading.
Display your name in Bold, address in Italics and standard as 11th .
Solution :
<!DOCTYPE html>
<html>
<head>
<title>SOP.1</title>
</head>
<body bgcolor="green" text="red">
<h1>My First Web Page</h1>
<b>Name : [Your Name ]</b><br>
<i>Address : [Your Address]</i><br>
Standard : 11<sup>th</sup>(A)
</body>
</html>
How To Use This Code :
1. open notepad in your pc.
2. Write this Code
3. Save this Code and Remember, Write .html in last .
4. open this code in any browser.
Comments
Post a Comment