write a HTML program to display your school's name in the webpage.
Answers
Answered by
2
Answer:
<html>
<head>
<title>Display school name</title>
</head>
<style type="text/css" media="all">
h1{
text-align: center;
color: red;
}
</style>
<body>
<h1>RAGUL MATRIC HIGHER SECONDARY SCHOOL</h1>
</body>
</html>
Similar questions