-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
executable file
·130 lines (83 loc) · 3.33 KB
/
demo.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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<title>Demo • 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">
<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\newdemo.png" />
</div>
<!-- <div class="regular-header">
<img src="images/foodie features.png">
</div> -->
<div class="divider-lines"></div>
<div class="features-img">
<h1 class="section-title">App Demo</h1>
<div class="demo-preview">
<p>Our trial demo allows you to view 10 recipes without signing up, and you get keep those 10 for life. You never have to sign up if you don't want to. Download the demo and see what all the fuss is about.</p>
</div>
<div class="OSsupport">
<div class="phone-icon"><i class="fab fa-android fa-5x"></i></div>
<div class="phone-icon"><i class="fab fa-apple fa-5x"></i></div>
</div>
<div class="button-section">
<button class="live-demo-btn">Click To Download Trial</button>
</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>