-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.html
105 lines (99 loc) · 3.36 KB
/
thanks.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<title>The Chef Horror Mini Store</title>
<link rel="icon" href="images/criminal-bloody-weapon.png" />
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=Nanum+Myeongjo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<script src="https://kit.fontawesome.com/6d8e4d74f9.js" crossorigin="anonymous"></script>
<script src="https://www.w3counter.com/tracker.js?id=134751"></script>
</head>
<body>
<div class="header">
<div class="header-grid">
<a class="site-title" href="index.html">The Chef Horror Mini Store</a>
<ul class="header-links">
<input type="checkbox" />
<div class="checkbox">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu">
<li>
<a class="head-links" href="story.html">My Story</a>
</li>
<li>
<a class="head-links" href="recipes.html">Recipes</a>
</li>
<li>
<a class="head-links" href="contact.html">Contact</a>
</li>
<li>
<a class="head-links active" href="thanks.html">Special Thanks</a>
</li>
</div>
</ul>
<div class="media">
<i class ="fab fa-facebook-f"></i>
<i class ="fab fa-instagram"></i>
<i class ="fas fa-envelope"></i>
</div>
</div>
</div>
<section class="content-body special-thanks">
<div class="top-text book-text top-pad">
<h2>Thank you for all your hard work.</h2>
</div>
<hr class="recipe-line">
<div class="story middle">
<p>Feel free to email me pictures of your “inner horror” so it can be on the horror wall!</p>
</div>
<div class="books">
<img class="cover credit" src="images/ramen+original.jpg" alt="">
<div class="book-text">
<h2>Chef Mike Evans</h2>
<p>Chef Owner</p>
<p>Yugiri Ramen Project</p>
<p>Orlando, Florida</p>
</div>
</div>
<div class="books right">
<img class="cover credit" src="images/thumb.png" alt="">
<div class="book-text">
<h2>Chef Nicole Matos</h2>
<p>Cake Artist/Owner</p>
<p>Honey Hollow Cakery</p>
<p>Mohegan Lake, New York</p>
</div>
</div>
</section>
<footer>
<div class='footer'>
<div class="footer-grid">
<ul class="footer-links">
<li>
<a class="head-links" href="story.html">My Story</a>
</li>
<li>
<a class="head-links" href="recipes.html">Recipes</a>
</li>
<li>
<a class="head-links" href="contact.html">Contact</a>
</li>
<li>
<a class="head-links" href="thanks.html">Special Thanks</a>
</li>
</ul>
<div class="media-footer">
<i class ="fab fa-facebook-f"></i>
<i class ="fab fa-instagram"></i>
<i class ="fas fa-envelope"></i>
</div>
</div>
</div>
</footer>
</body>
</html>