-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (69 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile App Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header>
<nav class="nav">
<div class="container navbar">
<div>
<img src="/images/Auto Layout Horizontal.png" alt="">
</div>
<ul class="ul">
<li>Company</li>
<li>Services</li>
<li>Resources</li>
<li class="btn-primary">Contact</li>
</ul>
</div>
</nav>
<div class="hero">
<div class="container hero-content">
<h1>Attract <br> New Leads <br> like never <br> before</h1>
<p>Risus commodo id odio turpis pharetra elementum. Pulvinar porta
porta feugiat scelerisque in elit. Morbi rhoncus, tellus, eros</p>
<div>
<input type="text" name="" id="">
<button>ATTRACT</button>
</div>
</div>
</div>
</header>
<!-- Main -->
<main>
<!-- Companies -->
<section>
<h1>Companies</h1>
</section>
<!-- Features -->
<section>
<h1>We Offer</h1>
</section>
<!-- About Us -->
<section>
<h1>Why Choose Us</h1>
</section>
<!-- Works -->
<section>
<h1>Some pieces of our work</h1>
</section>
<!-- Testimonials -->
<section>
<h1>Testimonials</h1>
</section>
<!-- CTA -->
<section>
<h1>CTA</h1>
</section>
<!-- Footer -->
<footer>
<h1>Footer</h1>
</footer>
</main>
</body>
</html>