-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (86 loc) · 3.26 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<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=M+PLUS+1+Code:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="input">
<label for="firstNameIn">First Name:</label>
<input type="text" id="firstNameIn"></input><br>
<label for="lastNameIn">Last Name:</label>
<input type="text" id="lastNameIn"></input><br>
<label for="ageIn">Age:</label>
<input type="text" id="ageIn"></input><br>
<label for="heightIn">Height:</label>
<input type="text" id="heightIn"></input><br>
<label for="weightIn">Weight:</label>
<input type="text" id="weightIn"></input><br>
<label for="religionIn">Religion:</label>
<input type="text" id="religionIn"></input><br>
<label for="raceIn">Race:</label>
<input type="text" id="raceIn"></input><br>
<label for="emailIn">E-Mail:</label>
<input type="text" id="emailIn"></input><br>
<label for="phoneIn">Phone:</label>
<input type="text" id="phoneIn"></input><br>
<button id="send">ADD +</button>
</div>
<div id='version'>DataBase v-3.2</div>
<div id="data">
<div id="dataTitle">Search:</div>
<label for="firstN">First Name:</label>
<input type="text" id="firstN" required>
<br>
<label for="lastN">Last Name:</label>
<input type="text" id="lastN" required><br>
<div>
<button id="search">Search</button>
<button id="clear">Clear</button>
</div>
</div>
<Div id="allNames">
<div id="allNamesTitle">DataBase List:</div>
<hr>
<div id="sortButtons">
<button id="allItems">- All Items -</button>
<button id="firstNamesBtn">- First -</button>
<button id="lastNamesBtn">- Last -</button>
<button id="ageBtn">- Age -</button>
<button id="raceBtn">- Race -</button>
<button id="religionBtn">- Religion -</button>
<div id="allNamesContainer"></div>
</div>
</Div>
<Div id="output">
<label for="firstNamed">First Name:</label>
<div id="firstNamed"></div>
<label for="LastName">Last Name:</label>
<div id="lastName"></div>
<label for="age">Age:</label>
<div id="age"></div>
<label for="height">Height:</label>
<div id="height"></div>
<label for="weight">Weight:</label>
<div id="weight"></div>
<label for="religion">Religion:</label>
<div id="religion"></div>
<label for="race">Race:</label>
<div id="race"></div>
<label for="email">E-Mail:</label>
<div id="email"></div>
<label for="phone">Phone:</label>
<div id="phone"></div>
</Div>
<script src="script.js"></script>
</div>
MJG 2021
</body>
</html>