-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.11 KB
/
index.html
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
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<title></title>
</head>
<body>
<main>
<center>
<span>1</span><br>
<input type="text" id="name1" placeholder="type the student 1 here"><br>
<span>2</span><br>
<input type="text" id="name2" placeholder="type the student 2 here"><br>
<span>3</span><br>
<input type="text" id="name3" placeholder="type the student 3 here"><br>
<span>4</span><br>
<input type="text" id="name4" placeholder="type the student 4 here"><br>
<div>
<h4 id="result"></h4>
</div>
<button id="submit" onclick="submit()">
Submit
</button>
<button id="sort">
Sort
</button>
</center>
</main>
</body>
</html>