-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (68 loc) · 2.83 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
<!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">
<title>Complete Responsive diet website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<a href="#" class="logo"> Healthyfive</a>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="calculator.html">Calculator</a></li>
<a href="form.html">Registration</a>
<a href="reviews.html">review</a>
</ul>
</nav>
<div class="fas fa-bars" id="menu"></div>
</header>
<section class="home" id="home">
<div class="content">
<h3>Crack Your Fitness Formula now!</h3>
<a href="about.html" class="btn"> read more</a>
</div>
</section>
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="index.html "> <i class="right"></i>home</a>
<a href="about.html"> <i class="right"></i>about</a>
<a href="calculator.html"> <i class="right"></i>calculator</a>
<a href="services.html"> <i class="right"></i>services</a>
<a href="reviews.html"> <i class="right"></i>reviews</a>
</div>
<div class="box">
<h3>extra links</h3>
<a> <i class="right"></i>my account</a>
<a > <i class="right"></i>my order</a>
<a> <i class="right"></i>my wishlist</a>
<a > <i class="right"></i>ask questions</a>
<a> <i class="right"></i>terms of use</a>
<a > <i class="right"></i>privacy policy</a>
</div>
<div class="box">
<h3>contact info</h3>
<a > <i class="phone"></i>+123-456-7890</a>
<a > <i class="phone"></i>+123-765-2568</a>
<a> <i class="envelope"></i>[email protected]</a>
<a> <i class="map"></i>Chennai , India -600123</a>
</div>
<div class="box">
<h3>follow us</h3>
<a> <i class="facebook-f"></i>facebook</a>
<a> <i class="twitter"></i>twitter</a>
<a > <i class="instagram"></i>instagram</a>
<a> <i class="linkedin"></i>linkedin</a>
<a > <i class="github"></i>github</a>
</div>
</div>
<div class="credit">healthyfive</div>
<script src="script.js"></script>
</body>
</html>