-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
index.html
42 lines (40 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>WKC Dog Show</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<script src="./src/index.js"></script>
<link rel="stylesheet" href="./assets/style.css" />
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script|Open+Sans" rel="stylesheet" />
</head>
<body>
<div class='main flex'>
<h1 class='padding margin'>Westminster Kennel Club Dog Show</h1>
<div class="margin flex">
<h4 class='center'>Edit Existing Dog</h4>
<form id='dog-form' class="padding margin border-round border-grey">
<input type="text" name="name" placeholder="dog's name" value="" />
<input type="text" name="breed" placeholder="dog's breed" value="" />
<input type="text" name="sex" placeholder="dog's sex" value="" />
<input type="submit" value="Submit" />
</form>
</div>
<div class="margin flex">
<h4 class='center'>Registered Dogs</h4>
<table class='margin' border="1">
<thead class='blue'>
<tr class='padding'>
<th class='padding center'>Name</th>
<th class='padding center'>Breed</th>
<th class='padding center'>Sex</th>
<th class='padding center'>Edit Dog</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
</div>
</body>
</html>