-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>Labradors</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class="main-body">
<h1 class="big-title">Labrador Puppies</h1>
<nav>
<a href="http://www.akc.org/dog-breeds/labrador-retriever/">Info.</a>
<a href="quotes.html">Why get a dog?</a>
<a href="http://www.animalplanet.com/tv-shows/dogs-101/videos/labrador-retriever/">Video</a>
<a href="http://www.adoptapet.com/s/labrador-puppies-and-dogs-for-sale">Buy Your Own</a>
</nav>
<main>
<img src= "images/Puppies.png" alt= "Dog" class="dog-pic">
<section class="types-of-labs ">
<h2>Different kinds of labs</h2>
<ul>
<li id="yellow">Yellow</li>
<li id="black">Black</li>
<li id="brown">Chocolate</li>
</ul>
</section>
<section class="form">
<h3 id="form-heading">Pick out your own dog!</h3>
<form name="Dog qualities" action="success.html">
<fieldset class="form-colors">
<div>
<label>Dog color:</label>
<select name="color">
<option value="Yellow">Yellow</option>
<option value="Black">Black</option>
<option value="Chocolate">Chocolate</option>
</select>
</div>
<div>
<label>Gender</label>
<select name="Gender:">
<option value="Girl">Girl</option>
<option value="boy">Boy</option>
</select>
</div>
<div>
<label>Name of puppy:</label>
<input type="text" name="dog-name" placeholder="Name of your future puppy">
</div>
</fieldset>
<button type="submit" id="button">Save these answers!</button>
</form>
</section>
</main>
<footer id="contact">
<p>If any additional information is needed about Labradors please contact me at 860-878-7256</p>
</footer>
</body>
</html>