-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.38 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<header class="showcase">
<div class="container">
<nav>
<h1 class="logo">MangoDirect</h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
</ul>
</nav>
<div class="showcase-content">
<div>
<h1>Get your Mango today!</h1>
<p class="my-2">
Our Mango subscription is a curated subscription in which we select and compile the varieties and also always present new,
special Mangos that we don’t always have in our normal menu.
</p>
<img class="mobile-img"
src="./mango.png"
alt=""
/>
<a href="#" class="btn-primary">Learn More</a>
<a href="#" class="btn-secondary">Sign Up</a>
</div>
<img class="desktop-img"
src="./mango.png"
/>
</div>
</div>
</header>
<body>
</body>
</html>