[go: up one dir, main page]

0% found this document useful (0 votes)
7 views2 pages

Doctype HTML

The document contains two HTML pages: one for student registration with a form to input name and phone number, and another displaying lecturer information in a table format. The student registration form includes input validation for the phone number and a submission alert. The lecturer information page lists various units and their respective lecturers, along with a button to view the page details.

Uploaded by

preciousmercy674
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Doctype HTML

The document contains two HTML pages: one for student registration with a form to input name and phone number, and another displaying lecturer information in a table format. The student registration form includes input validation for the phone number and a submission alert. The lecturer information page lists various units and their respective lecturers, along with a button to view the page details.

Uploaded by

preciousmercy674
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html>
<head>

<title>Student Registration</title>
</head>
<body>
<h1>Student Registration</h1>

<nav>
<a href="index.html">Home</a> |
<a href="pagetwo.html">Page Two</a>
</nav>
<br>
<form name="studentDetail" method="POST"
onsubmit="submitForm(event)">
<fieldset style="width: 50px;">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>

<label for="phone">Phone Number:</label><br>


<input type="text" id="phone" name="phone"><br><br>

<input type="submit" value="Submit">


</fieldset>
</form>
<script>
document.getElementById("phone").addEventListener("input", function
() {
this.value = this.value.replace(/[^0-9]/g, '');
});
function submitForm(e) {
e.preventDefault();
alert("Detail submitted");
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Lecturer Information</title>
</head>
<body>
<a href="index.html">Back to Home</a>
<br><br>
<table style="width:80%; height:420px; border:2px solid green;"
border="1">
<tr>
<th>Unit</th>
<th>Lecturer</th>
</tr>
<tr><td>Computer Maths</td><td>Ms. Occupy Temo</td></tr>
<tr><td>Web Design</td><td>Mr. Ali Agomo</td></tr>
<tr><td>Artificial Intelligence</td><td>Mr. Anguka Jabari</td></tr>
<tr><td>Algorithm & Data Structures</td><td>Ms. Nayo
Sitati</td></tr>
<tr><td>Java Programming</td><td>Mr. Hassan Mwasi</td></tr>
<tr><td>Information Systems</td><td>Ms. Jibu Likoni</td></tr>
<tr><td>Operating Systems</td><td>Dr. Aloo Chao</td></tr>
</table>
<br>
<button onclick="alert('You have view page 2')">View</button>
</body>
</html>

You might also like