In: Computer Science
Create a Web page about yourself containing the following: Notepad++
The page should have a light green background and a one inch margin.
At least three headings, h1 to h3.
At least two paragraphs about you.
A numbered list with at least three hyperlinks. The hyperlinks cannot be the ones we created in class today which were the links to Yahoo and Google.
Two horizontal rules.
All the h1, h2, and h3 tags should have the following styles:
They should display in orange.
They should have blue background colors.
They should be right aligned.
Name the file hassign2.htm.
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body{
background-color: lightgreen;
margin: 1in;
}
h1,h2,h3{
color: orange;
background-color: blue;
text-align: right;
}
p{
margin: 0;
color: blue;
background-color: yellow;
font-size: 16pt;
}
hr{
background-color:green;
height: 8px;
width: 80%;
}
a{
color: red;
font-size: 14pt;
}
</style>
</head>
<body>
<h1>Im John</h1>
<h2>I'm 20 years old</h2>
<h3>I'm from India</h3>
<h4>About Me</h4>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Optio quisquam vitae delectus a cumque sequi quos ipsam perferendis fugiat! Distinctio numquam quasi perspiciatis quis. Repellat repudiandae minus placeat labore assumenda?</p>
<hr>
<p>accusamus alias voluptatem, veniam, numquam pariatur in dignissimos! Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minus laboriosam emque nostrum vitae saepe expedita, quia itaque quos illum deserunt.</p>
<hr>
<ol>
<li><a href="facebook.com">Facebook</a></li>
<li><a href="instagram.com">Instagram</a></li>
<li><a href="twitter.com">Twitter</a></li>
</ol>
</body>
</html>
Screenshot: