-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (72 loc) · 3.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dirty Dogs - Serving Columbus Ohio all-beef, vegan and vegetarian hot dogs</title>
<link rel="stylesheet" href="https://use.typekit.net/xlh2oye.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="img-header">
<img src="images/hot-dog-header-images.jpg" alt="collage of Dirty Dogs hot dogs" class="img-header__background-img">
<a class="img-header__instagram-wrap" href="https://www.instagram.com/explore/tags/hot-dogs/" target="_blank">
<img src="images/Instagram.svg" alt="Instagram logo" class="img-header__instagram-logo">
<p class="img-header__hashtag">#hotdogs</p>
</a>
</div>
<header>
<nav class="nav">
<ul class="nav__ul">
<li class="nav__li"><a href="#" class="nav__link">menu</a></li>
<li class="nav__li"><a href="#" class="nav__link">catering</a></li>
<li class="nav__li"><a href="#" class="nav__link">about us</a></li>
<li class="nav__li"><a href="#" class="nav__link">contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<section class="hero">
<img class="hero__hot-dog-img" src="images/hot-dog-logo.svg" alt="">
<h1 class="hero__title">Dirty Dogs serves all-beef, vegan and vegetarian hot dogs.</h1>
<a href="#" class="button">More Dogs 'n Make Em Hot</a>
</section>
<section class="hot-dog-styles">
<img class="hot-dog-styles__img hot-dog-styles__img--beef" src="images/all-beef-hot-dog.jpg" alt="All beef hot dog with chili, cheese, and peppers.">
<div class="hot-dog-styles__description hot-dog-styles__description--beef">
<div class="hot-dog-styles__text-wrap">
<h2 class="hot-dog-styles__title">Gourmet All-Beef Hot Dogs</h2>
<p class="hot-dog-styles__body">Praesent commodo cursus magna, vel sceleriesque misl consectetur et. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
<img class="hot-dog-styles__img hot-dog-styles__img--vegan" src="images/vegan-hot-dog.jpg" alt="All beef hot dog with chili, cheese, and peppers.">
<div class="hot-dog-styles__description hot-dog-styles__description--vegan">
<div class="hot-dog-styles__text-wrap">
<h2 class="hot-dog-styles__title">Vegan Hot Dogs</h2>
<p class="hot-dog-styles__body">Praesent commodo cursus magna, vel sceleriesque misl consectetur et. Aenean eu leo
quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
<img class="hot-dog-styles__img hot-dog-styles__img--vegetarian" src="images/vegetarian-hot-dog.jpg" alt="All beef hot dog with chili, cheese, and peppers.">
<div class="hot-dog-styles__description hot-dog-styles__description--vegetarian">
<div class="hot-dog-styles__text-wrap">
<h2 class="hot-dog-styles__title">Vegetarian Hot Dogs</h2>
<p class="hot-dog-styles__body">Praesent commodo cursus magna, vel sceleriesque misl consectetur et. Aenean eu leo
quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__section">
<p class="footer__text">® 2016 Dirty Dogs all rights reserved</p>
</div>
<div class="footer__section footer__section--second">
<p class="footer__text">274 Marconi Blvd. Columbus, Ohio 43215</p>
<a href="tel:614-538-0095" class="footer__text">614.538.0095</a>
<a href="#" class="footer__text footer__text--link">Contact Us</a>
</div>
</footer>
</body>
</html>