-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGreetings - DOM(html)
More file actions
34 lines (33 loc) · 1.04 KB
/
Greetings - DOM(html)
File metadata and controls
34 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<style>
table,td{
border: 1px solid black;
}
</style>
<script src="script.js" type="text/javascript" charset="utf-8">
</script>
</head>
<body>
<h1>
Elite Coaching Center
</h1>
<table>
<tr>
<td><label for="studentName">Student Name</label></td>
<td><input type="text" id="sname" required></td>
</tr>
<tr>
<td><label for="course" >Course</label></td>
<td><select name="course" id="course" required>
<option value="Python">Python</option>
<option value="Java">Java</option>
<option value="Oracle">Oracle</option>
</select>
</td>
</tr>
</table><br>
<input type="button" name="submit" id="submit" value="Register" onclick="display()"><br>
<div id="greet"></div>
</body>
</html>