-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
executable file
·113 lines (73 loc) · 3.89 KB
/
about.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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<title>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>
<img class="regular-header" src="images\aboutthefoodies.png">
<div class="divider-lines"></div>
<div class="section-title">About WTFoodie</div>
<p class="about-us-content">
In 2019, two Lambda School students broke away from the class to begin working on a project that would change the way that people thought about food and recipes. Jashele Tillman and Colby Howell were just a couple of foodies that bonded over their love of cooking and eating. In just two short weeks, WTFoodie was born.<br><br>
They had no idea what they were getting themselves into whenever the application devlopment began, but over the course of those two short weeks, WTFoodie took shape and was released onto the mobile and web markets for the world to see... and see they did.<br><br>
In just a few short days, the application gained incredible traction and 50,000 people signed up for the ULTIMATE pricing plan. Jashele and Colby became millionaires overnight. A team of 20 programmers, community managers, and a professional chef was brought on board to handle this incredible influx of users. WTFoodie is constantly hiring new employees. Apply for a career today by visiting the WTFoodie app and choose APPLY at the bottom.<br><br>
As of today, the application gains about 1,000 new users a day and is the sinle most successful food based social media application in the world.<br><br>
</p>
<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>