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
0
<!doctype html>
<html lang="en">
<head> <title>Assignment</title> </head>
<body style="background-color: yellow; color: red;">
<h1>Welcome to E-learning</h1>
<p>E-Learning is done with the help of Microsoft Teams.</p>
<hr style="width: 100%;"/>
</body>
</html>
Similar questions