-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Title Page</title>
<title>Safe at School</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
<script src="index_script.js"></script>
</head>
<body>
<img src="background/homepage.jpg" id="bg" alt="">
<div id="homepage">
<h1 id="header">
Safe At School!
</h1>
<p id="des" style= "text-align: center; padding:15px" class = "instructions">
Welcome to your first day back to school! <br>With COVID-19 still at large, we need to keep both ourselves and others safe. <br>Are you ready to start your school day? <br>Let's start off simple:
</p>
<form id="nameform" action="#" onsubmit="greet(); return false;">
<label for="username">What is your name?</label><br>
<input type="text" id="username" required>
<input type="submit" value="OK">
</form>
<a href="table.html">
<button id="button" class="starting" style="visibility: hidden"> START </button>
</a>
</div>
</body>
</html>