Web Technology - Old Questions
5. Create a HTML page with tags header, article and footer. Insert alink containing mail to info@iost.edu.np in the footer tag. Set the keywords "iost", "csit" using Meta tag in the page.[5]
5 marks
|
Asked in 2076(new)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="iost, csit">
<title>IOST</title>
</head>
<body>
<header style="background-color: darkgray; margin-bottom: 2px;">
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<article>
Institute of Science and Technology (IoST) is one of the oldest and the largest technical institutes in TU.
</article>
<footer style="background-color: darkgray; margin-top: 2px; text-align: center;">
<a href="info@iost.edu.np">Send Email</a>
</footer>
</body>
</html>