write a HTML program to display your school's name in the webpage for class 7
Answers
Answered by
0
Answer:
Main Syntax : <h1>Name of school</h1>
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>Title of the Page</title>
</head>
<body>
<h1>Name of school</h1>
</body>
</html>
Similar questions