-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArray for Names.html
92 lines (78 loc) · 1.55 KB
/
Array for Names.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
92
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Little Vikings</title>
<link rel="stylesheet" type="text/css" href="Logo2.css">
<script src="NameInput.js"></script>
</head>
<body>
<div id="Titlecont">
<div id="Picture">
<img src="LogoPicture.png" width=60 height=60>
</div>
<div id="Title">
<h1>Little Hands Daycare</h1>
</div>
<div id="Motto">
<p> "It takes a village to raise a child" </p>
</div>
</div>
<div id="Button">
<a href="Computer SciencesWE.html">
<button type="button">
Home
</button>
</a>
<a href="About Us.html">
<button type="button">
About
</button>
</a>
<a href="Timer.html">
<button type="button">
Timer
</button>
</a>
<a href="Register.html">
<button type="button">
Register
</button>
</a>
<a href="Schedule.html">
<button type="button">
Events
</button>
</a>
</div>
<br>
<br>
<br>
<br>
<br>
<div id="mda">
<br>
<div id="TextForNames">
<p id="getInput">
Please Enter The Student's Name.
</p>
<div id="InputBox">
<p>
<input id="getName" type="text">
</input>
<button type="button" onclick="storeNames()">
Enter a Student's Name
</button>
</p>
<p>
<input id="getIndex" type="text">
</input>
<button type="button" onclick="getName()">
Enter The Index You Wish to Retrieve
</button>
</p>
</div>
</div>
</div>
</body>
</html>