-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 845 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DoggoSelect</title>
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Open+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1 class="logo">DoggoSelect</h1>
</header>
<div class="container">
<label for="breeds">Select a Breed</label>
<select class="u-full-width" id="breeds"></select>
<div class="card"></div>
<form>
<label for="name">Name</label>
<input class="u-full-width" id="name" type="text">
<label for="comment">Comment</label>
<textarea class="u-full-width" id="comment"></textarea>
<button type="submit" id="submit">Submit</button>
</form>
</div>
<script src="js/app.js"></script>
</body>
</html>