-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (43 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Horse Land</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700|Rye" rel="stylesheet">
</head>
<body>
<div class="sign">
<h1>Horse Land</h1>
<p>A list of horses from A to Z</p>
</div>
<div class="featured">
<h2>Horse of the Month</h2>
<div class="featured-img">
<img src="img/1280px-SpanishMustangsOfCorolla.jpg">
</div>
<div class="featured-text">
<p class="bold">Mustang</p>
<p>This month, we're featuring the mustang, a free-roaming horse of the American west that first descended from
horses brought to the Americas by the Spanish. Here are five beach loving wild Spanish Mustangs in Corolla,
North Carolina.</p>
<a href="mustang.html" class="button button--primary">Learn More</a>
</div>
</div>
<ul id="imageGallery" class="card-wrap">
</ul>
<div class="links">
<h2>Want to learn even more about horses?</h2>
<a href="https://en.wikipedia.org/wiki/Horse" class="button button--secondary" target="_blank">Horses on
Wikipedia</a>
<a href="https://commons.wikimedia.org/wiki/Horse_breeds" class="button button--secondary" target="_blank">Horse
Breeds</a>
</div>
<p class="credits">Text and horse breed photos from <a href="https://commons.wikimedia.org/wiki/Horse_breeds"
target="_blank">Wimimedia Commons - Horse Breeds</a> under a
<a href="https://creativecommons.org/licenses/by-sa/3.0/" target="_blank">Creative Commons Attribution-ShareAlike
3.0 Unported License</a>.
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>