-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en" style="scroll-behavior: smooth">
<head>
<!-- Meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title -->
<title>Send</title>
<!-- StyleSheet -->
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<!-- Navbar -->
<nav>
<div class="logo">SEND</div>
<div class="nav-item">
<a href="/">Home</a>
<a href="/">About</a>
<a href="/">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<!-- Hero Section left -->
<div class="column-left">
<h1>Send Unlimited Messages</h1>
<p>
No contracts or unwanted fees. Exclusive offer for new customers
only.
</p>
<button>Get Started</button>
</div>
<!-- Hero Section Right -->
<div class="column-right">
<img src="./image-1.svg" alt="Illustration" class="hero-image" />
</div>
</div>
</section>
</body>
</html>