-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
128 lines (115 loc) · 6.54 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/footer.css">
<title>My Fitness Pal</title>
</head>
<body>
<div id="top-bar">
<h1><a href="index.html">myfitnesspal</a></h1>
<div id="links">
<a href="login.html">Log In</a>
<a href="signup.html">Sign Up</a>
</div>
</div>
<div id="navbar">
<div>
<a href="/about.html">ABOUT</a>
<a href="">FOOD</a>
<a href="">EXERCISE</a>
<a href="signup.html">APPS</a>
<a href="login.html">COMMUNITY</a>
<a href="">BLOG</a>
<a href="">PREMIUM</a>
</div>
</div>
<div id="layout">
<div id="body">
<div id="about">
<h2>Lose Weight with MyFitnessPal.com — for FREE!</h2>
<p>Losing weight isn't easy - we know. But with a membership to MyFitnessPal.com, you'll get the tools you need to successfully take weight off - and keep it off. And best of all, you can signup for free, no strings attached. So put away your credit card - you'll never have to pay a cent.</p>
<p>Study after study has confirmed the benefits of keeping track of the food you eat and the activity you do. It's simple - the more consistently you track your food intake, the more likely you are to lose weight. That's why every successful weight management program suggests that you keep a food diary and/or an activity log. But recording everything you eat without the right tools can be tedious at best, or simply impossible at worst.</p>
<p>At MyFitnessPal.com, we focus on making sure you can log your meals as quickly and easily as possible. Because the easier we make it for you, the more likely you are to stay on track, and the more likely you are to succeed in your weight loss goals.</p>
</div>
<div id="how-it-works">
<div>
<img src="img/about/img-about-us.png" alt="">
<div>
<h4>How does it work?</h4>
<p>The reason our system is so easy to use is because it learns from you! All of us tend to eat the same foods over time. MyFitnessPal.com remembers what you've eaten and done most often in the past, and makes it easy for you to add those foods again to your log.</p>
<p>So the more you track your meals, the easier it becomes!</p>
</div>
</div>
</div>
<div id="membership">
<h4>Lose Weight with MyFitnessPal.com — for FREE!</h4>
<ul>
<li><p><span>The easiest to use food diary on the web -</span> Track what you eat with just a few clicks from anywhere with an internet connection - at home or at work</p></li>
<li><p><span>A searchable food database of over 300,000,000 items -</span> and it's growing every day!</p></li>
<li><p><span>Your own personal food database -</span> add your own foods and recipes at any time and access them from anywhere with an internet connection</p></li>
<li><p><span>Free mobile apps for iPhone and Android -</span> so you can log your meals and exercise even when you are on the go</p></li>
<li><p><span>Support and motivation from people just like you -</span> Our discussion forums let you learn from others, share your own tips, receive and give encouragement, and make friends.</p></li>
<li><p><span>A personalized diet profile -</span> customized to your unique weight loss goals.</p></li>
<li><p><span>Flexibility -</span> our system can support any diet like Atkins, the South Beach Diet, the Zone, and more. No matter what diet you're on, we can help.</p></li>
</ul>
</div>
<div id="dont-wait">
<div>
<img src="img/about/hcg-diet.png" alt="">
<div>
<p>All the tools you need for healthy, sustainable weight loss are right at your fingertips - and you'll never have to pay a cent! So what are you waiting for? Stop wasting money on other dieting programs.</p>
<p>Join today and get on the path to healthier living!</p>
<button><a href="signup.html">Join Now For FREE!</a></button>
</div>
</div>
</div>
</div>
<!-- SIDEBAR SECTION -->
<div id="sidebar">
<form>
<h4>Member Login</h4>
<button><a href="signup.html">Create an account</a></button>
<p>or</p>
<form>
<label>Email:</label>
<input class="data" type="email" name="email" id="email" required>
<label>Password:</label>
<input class="data" type="password" name="password" id="password" required>
<input type="checkbox" name="remember" id="remember">
<label>Remember me next time</label>
<input type="submit" value="Login">
</form>
</form>
</div>
</div>
<footer>
<div>
<ul>
<li><a href="">Calorie Counter</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Terms</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">ContactUs</a></li>
<li><a href="">API</a></li>
<li><a href="">Jobs</a></li>
<li><a href="">Feedback</a></li>
<li><a href="">Community Guidelines</a></li>
<li><a href="">Ad Choices</a></li>
<li><a href="">Do Not Sell My Personal Information</a></li>
</ul>
<select id="language">
<option value="English">English</option>
<option value="Hindi">Hindi</option>
<option value="Deutsch">Deutsch</option>
</select>
</div>
<div>© 2022 MyFitnessPal, Inc.</div>
</footer>
</body>
<script src="js/about.js"></script>
</html>