-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (84 loc) · 2.99 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
<!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>Ominifood</title>
<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=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header class="header">
<img class="logo" src="./img/omnifood-logo.png" alt="Omnifood logo" />
<nav class="main-nav">
<ul class="main-nav-list">
<li><a class="main-nav-link" href="#">Section 1</a></li>
<li><a class="main-nav-link" href="#">Section 2</a></li>
<li><a class="main-nav-link" href="#">Section 3</a></li>
<li><a class="main-nav-link" href="#">Section 4</a></li>
<li><a class="main-nav-link nav-cta" href="#">Section 5</a></li>
</ul>
</nav>
</header>
<main>
<section class="section-hero">
<div class="hero">
<div class="hero-text-box">
<h1 class="heading-primary">
A healthy meal delivered to your door, every single day
</h1>
<p class="hero-description">
The smart 365-days-per-year food subscription that will make you
eat healthy again. Tailored to your personal tastes and
nutritional needs.
</p>
<a class="btn btn--full margin-right-sm" href="#"
>Start eating well</a
>
<a class="btn btn--outline" href="#">Learn more ↓</a>
<div class="delivered-meals">
<div class="devlivered-imgs">
<img
src="./img/customers/customer-1.jpg"
alt="Customer photo"
/>
<img
src="./img/customers/customer-2.jpg"
alt="Customer photo"
/>
<img
src="./img/customers/customer-3.jpg"
alt="Customer photo"
/>
<img
src="./img/customers/customer-4.jpg"
alt="Customer photo"
/>
<img
src="./img/customers/customer-5.jpg"
alt="Customer photo"
/>
<img
src="./img/customers/customer-6.jpg"
alt="Customer photo"
/>
</div>
<p class="delivered-text">
<span>250,000+</span> meals delivered last year!
</p>
</div>
</div>
<div class="hero-img-box">
<img class="hero-img" src="./img/hero.png" alt="Hero Image" />
</div>
</div>
</section>
</main>
</body>
</html>