-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Nutrabloom</title>
<!-- favicon -->
<link rel="shortcut icon" href="img/fav.png" type="image/x-icon" />
<!-- bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<!-- style css -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- welcome screen -->
<section class="welcome">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-md-6">
<div class="left-image p-4">
<a href="./" class="text-decoration-none">
<img src="img/logo.png" class="img-fluid" alt="" />
</a>
</div>
</div>
<div class="right col-md-6 p-4">
<div class="mobile-logo text-center">
<a href="./" class="text-decoration-none">
<img src="img/logo.png" class="img-fluid" alt="" />
</a>
</div>
<div class="d-flex menus justify-content-end align-items-center gap-3">
<a href="./index.html" class="text-link active">Home</a>
<a href="./nutrient-compare/index.html" class="text-link"
>Nutrient Compare</a
>
<a href="./nutrient-breakdown/index.html" class="text-link"
>Nutrient Breakdown</a
>
<a href="./home-vs-store/index.html" class="text-link">Home vs. Store</a>
</div>
<p class="mt-200 fs-30">We transform health through data</p>
<h2 class="fs-55 cormorant-garamond-regular">
Delivering exceptional, <br />
data-inspired nutritional <br />
guidance and support
</h2>
<a href="./info/index.html" class="btn learn-btn px-5 py-3"> LEARN MORE </a>
</div>
</div>
</div>
</section>
<!-- welcome screen -->
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- app js -->
<script src="js/app.js"></script>
</body>
</html>