-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<link rel="stylesheet" href="styles/master.css">
<title>Go Healthy</title>
</head>
<body>
<!-- navigation menu starts -->
<nav>
<h3 class="title">Go healthy</h3>
<!-- navigation menu starts -->
<ul>
<li class="list">
<a href="#" class="link">Home</a>
</li>
<li class="list">
<a href="./about.html" class="link">About Us</a>
</li>
<li class="list">
<a href="./dietplant.html" class="link">Diet plan</a>
</li>
<li class="list">
<a href="./yoga.html" class="link">Yoga & meditation</a>
</li>
<li class="list">
<a href="./exercise.html" class="link">Exercise</a>
</li>
</ul>
</nav>
<!-- landing page section -->
<section>
<div class="content">
<h1 class="">Eat Healthy</h1>
<h1 class="content_SubHeading"> All Week Long</h1>
<button class="btn-primary">
Start Meal Planning
</button>
</div>
</section>
<section class="video_section">
<!-- text section -->
<div>
<h1>How it <span class="highlighted_text">Works</span></h1>
</div>
<!-- Video section -->
<div class="video_frame">
<iframe width="750" height="450" src="https://www.youtube.com/embed/Gmh_xMMJ2Pw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<section class="image_info">
<div class="leftimage">
<img src="./images/imagewithinfo.png" alt="">
</div>
<div class="righttext">
<h1>
Browse
<br>
<span class="highlighted_text">
Healthy Recipes
</span>
</h1>
<p>
We've got hundreds of delicious recipes for every taste and dietary preference. Browse them all using our Search and Filter tools and choose the ones that are right for you.
</p>
</div>
</section>
<script src="js/master.js"></script>
</body>
</html>