-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (65 loc) · 2.16 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<title>Guest List</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Sans+Caption&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cookie&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Akaya+Telivigala&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sofia&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="main.js"></script>
</head>
<body>
<center>
<h3 class="top">
Guest List
</h3>
<div id="cook">Submit Names</div>
<div id="rows">
<input type="text" placeholder="Enter name" id="name1">
<br>
<div class="btn btn2">
<div class="inner"></div>
<button onclick="submit()">Submit</button>
</div>
<hr>
<span>
<div id="display_name">
</div>
</span>
<hr>
<div id="cook">Guest List</div>
<div class="btn btn4">
<div class="inner"></div>
<button onclick="show()" >Show</button>
</div>
<p id="p1"></p></div>
<hr>
<div class="btn btn3" id="sort_button">
<div class="inner"></div>
<button onclick="sorting()" >Sort List</button>
</div>
<div id="sorted"></div>
</div>
<hr>
<div id="cook">Search Names</div>
<br>
<input type="text" placeholder="Search name" id="s1">
<br>
<div class="btn btn1">
<div class="inner"></div>
<button onclick="searching()">SEarch</button>
</div>
<p id="p2"></p>
</center>
</body>
</html>