-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (118 loc) · 4.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<script src="https://kit.fontawesome.com/2162da8111.js" crossorigin="anonymous"></script>
<title>Sculpt Your Body</title>
</head>
<body>
<div class="page-wrapper">
<header class="page-header">
<div class="logo-container">
<a href="index.html">
<img class="logo" src="img/logo.png" alt="logo">
</a>
</div> <!-- logo container -->
<nav class="navbar">
<ul class="nav-list">
<!-- Navigation starts as empty UL that will be populated with JS -->
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Become Your <u>Best</u> Self</h1>
</section>
<!-- Each Section has an ID (used for the anchor) and
a data attribute that will populate the li node.
Adding more sections will automatically populate nav.
The first section is set to active class by default -->
<section class="newsletter">
<form action="#">
<h3>Subscribe to our Newsletter</h3>
<div class="newsletter-container">
<div class="newsletter-element">
<input type="text" placeholder="Name" name="name" required>
</div>
<div class="newsletter-element">
<input type="text" placeholder="Email address" name="mail" required>
</div>
<div class="newsletter-element">
<input type="submit" value="Subscribe">
</div>
</div> <!-- newsletter container -->
</form>
</section> <!-- newsletter -->
<section id="benefits" data-nav="Benefits" class="your-active-class">
<h2>The Benefits of Our Program</h2>
<div class="benefits-flex">
<div class="benefits-card">
<div class="benefits-icon">
<i class="fas fa-dumbbell"></i>
</div>
<div class="benefits-headline">
<h3>Exercise Plan</h3>
</div>
<div class="benefits-text">
Our exclusive plan filled with 100 bodyweight exercises, so you can get into the best shape possible - wherever whenever!
</div>
</div> <!-- benefits-card -->
<div class="benefits-card">
<div class="benefits-icon">
<i class="fas fa-utensils"></i>
</div>
<div class="benefits-headline">
<h3>Meal Plan</h3>
</div>
<div class="benefits-text">
Delicious & easy to follow recipes will help you getting all the nutrients you need and fuel your body with energy.
</div>
</div> <!-- benefits-card -->
<div class="benefits-card">
<div class="benefits-icon">
<i class="fas fa-smile-beam"></i>
</div>
<div class="benefits-headline">
<h3>Smile Guarantee</h3>
</div>
<div class="benefits-text">
Get your money back if you are not happy!
</div>
</div> <!-- benefits-card -->
</div> <!-- flex-container -->
</section> <!-- benefits -->
<section id="plan" data-nav="Plan">
<div class="plan-container">
<h2>Buy Our Brand New Training Plan Now</h2>
<img class="book-img" src="img/book-cover.png" alt="Book Cover">
</div>
</section> <!-- plans -->
<section id="contact" data-nav="Contact">
<div class="contact-outer">
<form action="#">
<h3>Contact Us</h3>
<div class="contact-inner">
<input type="text" placeholder="Name" name="name" required>
<input type="text" placeholder="Email address" name="mail" required>
<textarea name="subject" placeholder="Write us something. We are looking forward to hearing from you!"></textarea>
<input type="submit" value="Submit">
</div> <!-- contact-inner -->
</form>
</div> <!-- contact-outer -->
</section> <!-- contact -->
</main>
<footer class="page-footer">
<p>
This is a mockup page. Design by Michelle Liebheit, 2019.
</p>
<p>
<a href="https://www.freepik.com/free-photos-vectors/mockup">Book template by freepik.</a>
</p>
</footer>
</div> <!-- page-wrapper -->
<script src="js/app.js"></script>
</body>
</html>