-
Notifications
You must be signed in to change notification settings - Fork 1
/
features.html
executable file
·151 lines (95 loc) · 4.51 KB
/
features.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<title>Features • Food Portfolio</title>
<link rel = "stylesheet"
type = "text/css"
href = "CSS/index.css" />
<!-- <script src="index.js" async></script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/pancakes.jpeg" />
<link rel = "stylesheet" href = "CSS\all.min.css" />
<meta name="description" content="Food Portfolio">
<meta name="keywords" content="Food,Recipes,Chef,Eat,Mobile,Apps,Lambda">
<meta name="author" content="Jashele Tillman & Colby Howell">
</head>
<body>
<script defer="defer" src="menu.js"></script>
<div class="container">
<header class="header"><a href="index.html" class="foodie-text">WTFoodie</a>
<div class="dropdown">
<div class="dropdown-button">
<hr class="menu-lines">
<hr class="menu-lines">
<hr class="menu-lines">
</div>
<div class="dropdown-content dropdown-hidden">
<a class="dropdown-link" href="about.html">About</a>
<a class="dropdown-link" href="features.html">Features</a>
<a class="dropdown-link" href="demo.html">Demo</a>
<a class="dropdown-link" href="pricing.html">Pricing</a>
<a class="dropdown-link" href="contact.html">Contact</a>
</div>
</header>
<div class="carousel">
<img class="slide image-show" src="images/foodie features.png" />
</div>
<!-- <div class="regular-header">
<img src="images/foodie features.png">
</div> -->
<div class="divider-lines"></div>
<div class="features-intro">
<h1 class="features-title">Chef Profiles</h1>
<img width="700px" src="images/chefprofile.jpg" alt="">
<p>Gordon Ramsay, Emeril Lagasse, Bobby Flay, Giada De Laurentiis. Have you heard of these chefs? They all have CHEF PROFILES on WTFoodie. Our chef profiles help show the world what you're made of in the kitchen.</p>
<div class="divider-lines"></div>
</div>
<div class="feature-page">
<div class="feature-page-box">
<div class="feature-img">
<img src="images\RECIPEgallery-800500.jpg" alt=""></div>
<div class="feature-name">Recipe Gallery</div>
<p class="features-text">Read through our 3000+ recipes that are hand selected by our in-house professional chefs. All recipes are re-created in our test kitchen to ensure that you're getting the best recipes possible.</p>
</div>
<div class="feature-page-box">
<div class="feature-img"><img src="images\recipe-800500.jpg" alt=""></div>
<div class="feature-name">Recipe Uploader</div>
<p class="features-text">If you stumble across a taste worth sharing, don't hesitate to share. Most of our recipes are uploaded by our users. If one of your recipes gets selected by our chefs, you get a monthly discount. </p>
</div>
<div class="feature-page-box">
<div class="feature-img"><img src="images\ratingsandreviews-800500.jpg" alt=""></div>
<div class="feature-name">Reviews & Ratings</div>
<p class="features-text">All recipes can be reviewed and rated by users on the site. If your recipe gains some serious traction in the feed, you have the chance to be our FEATURED CHEF OF THE MONTH. We will fly you out to NYC, wine and dine you, and you will help us develop a brand new recipe for the app.</p>
</div>
</div>
<footer>
<div class="divider-lines"></div>
<section class="bottom-widgets">
<div class="contact-us">
<div class="contact-title">Contact Us</div>
<div class="contact-address-phone">
Support - <a href="tel:5551234">555-1234</a><br><br>
Sales - <a href="tel:5551235">555-1235</a><br><br>
Fax - 555-1236<br><br>
Address:<address><u>123 Road Street<br>
New York, New York 12345</u></address>
</div>
</div>
<div>
<nav class="nav-bottom">
<a href="about.html">About</a>
<a href="/features">Features</a>
<a href="/demo">Demo</a>
<a href="/pricing">Pricing</a>
<a href="/contact">Contact</a>
</nav>
</div>
</section>
<div class="copyright">
© Foodie Portfolio 2019 • All Rights Reserved
</div>
</footer>
</div>
</body>
</html>