Nepal Oil Corporation2081 BSQuestion 9 of 16
Write a code in HTML to create a web page containing at least: title text, body, background color, a table, an image and a text with hyperlink.
5 marks
Question source
- Exam year
- 2081 BS / 2024 AD
- Level
- Level 5
- Paper
- Technical – Subjective
- Section
- Section B: Short & Long Answer Questions (50 Marks)
Model answer
<!DOCTYPE html>
<html>
<head>
<title>Nepal Oil Corporation ICT</title>
</head>
<body style="background-color: #f0f4f8;">
<h1>NOC IT Portal</h1>
<table border="1">
<tr><th>ID</th><th>Location</th></tr>
<tr><td>NOC-1</td><td>Thankot</td></tr>
</table>
<img src="logo.png" alt="NOC Logo">
<a href="https://www.noc.org.np">NOC Official Site</a>
</body>
</html>