-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
31 lines (24 loc) · 819 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="main.css" media="screen" title="no title">
<title>Carousel Example</title>
</head>
<body>
<h1>Horses</h1>
<section class="frame">
<section class="carousel-container">
<img src="img/Photo by Alex Blăjan _ Unsplash _ Unsplash.jpeg" alt="horse" />
</section>
</section>
<section class="button-container">
<a href="https://unsplash.com/search/horses">
<button class="link-button" type="button" name="button">More Horse Pics!</button>
</a>
<a href="http://kenwheeler.github.io/slick/">
<button class="link-button" type="button" name="button">More Carousel Options!</button>
</a>
</section>
</body>
</html>