-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.72 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en" class="all">
<head>
<meta charset="UTF-8">
<title id='hellow'>SpaceNuts</title>
<link rel="stylesheet" type="text/css" href="donutshop.css">
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Audiowide' rel='stylesheet' type='text/css'>
</head>
<main id="main">
<body>
<header>
<div class="card-container">
<div class="card">
<div class="side"><img id="jpg" src="spacenutsmoon.png"></div>
<div class="side back"></div>
</div>
</div>
<h1>SpaceNuts</h1>
</header>
<table id="myTable">
<tr class="title"><th>Donuts Per Hour</th></tr>
<tr id="time" class="title">
<td>Location</td>
<td>7:00 am</td>
<td>8:00 am</td>
<td>9:00 am</td>
<td>10:00 am</td>
<td>11:00 am</td>
<td>12:00 pm</td>
<td>1:00 pm</td>
<td>2:00 pm</td>
<td>3:00 pm</td>
<td>4:00 pm</td>
<td>5:00 pm</td>
<td>6:00 pm</td>
<td>Total Sold</td>
</tr>
</table>
<section>
<form id="newLocation">
<fieldset>
<h2 class="title">Add New Shop</h1>
<label>Location: <input type="text" name="newLocIn"></label>
<label>Minimum: <input type="text" name="newMinIn"></label>
<label>Maximum: <input type="text" name="newMaxIn"></label>
<label>Average: <input type="text" name="newAveIn"></label>
<button type="submit" id='submitlocation'>submit</button><br />
</fieldset>
</form>
</section>
</body>
<script type="text/javascript" src="donutshop.js"></script>
<script type="text/javascript" src="addlocation.js"></script>
</main>
</html>