Janak Education Materials Centre2082 BSQuestion 16 of 16
Create a HTML document (webpage) that contains structured form controls and layout elements.
10 marks
Question source
- Exam year
- 2082 BS / 2025 AD
- Level
- Level 5
- Paper
- Technical – Subjective
- Section
- Section B: Web, Database & Governance (50 Marks)
Model answer
<!DOCTYPE html>
<html>
<head><title>Form</title></head>
<body>
<form action="/submit">
<input type="text" name="name">
<input type="submit" value="Submit">
</form>
</body>
</html>