Write a HTML code to create a webpage with the following features.
a)Title-Assignment
b)Heading “Welcome to E-Learning” to be of the biggest heading size and to be
center alligned .
c)The background color of the page to be yellow and text red in colour.
E-Learning is done with the help of Microsoft Teams.
d)Draw a Horizontal line at the end of a webpage with full page width.
Answers
Answered by
21
<html>
<head>
<title>webpage</title>
<style>
body
{
background-color:yellow;
}
h1
{
color:red;
font-size:30px;
font-family:sans-serif,arial;
}
p
{
color:red;
font-family:sans-serif,arial;
}
</style>
</head>
<body>
<h1>
Welcome to E-Learning
</h1>
<p>
The background color of the page to be yellow and text red in colour.
</p>
<footer style="color: blue;">_________________________</footer>
</body>
</html>
Similar questions