-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (63 loc) · 2.02 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
<!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" />
<link rel="stylesheet" href="./css/style.css" />
<title>Mobile-app</title>
</head>
<body>
<header>
<div class="logo">
<img src="./images/logo_001.png" alt="logo-clear-the-air" />
</div>
<nav>
<ul>
<li><a href="producs">PRODUCS</a></li>
<li><a href="prices">PRICES</a></li>
<li><a href="blog">BLOG</a></li>
<li><a href="team">TEAM</a></li>
<li><a href="login">LOGIN</a></li>
<li><a href="sign-up">SIGN UP</a></li>
</ul>
</nav>
</header>
<main>
<section class="main-container">
<article class="text-and-buttons-container">
<div class="main-intro">
<h2>
Make your Startup web <br />
with our template,
</h2>
</div>
<div class="abstract">
<h5>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Suscipit
est nisi alias, blanditiis laudantium consectetur dolorem tempore
aliquid corporis aperiam eligendi deserunt eos quaerat eaque non
odio optio consequuntur ea.
</h5>
</div>
<section class="buttons">
<div class="learn-more">
<input type="submit" value="Learn More" />
</div>
<div class="get-app">
<input type="submit" value="Get the App" />
</div>
</section>
</article>
<section class="overview-app">
<div class="white-phone">
<img class="p1" src="./images/phone_001.png" alt="white-phone" />
</div>
<div class="black-phone">
<img class="p2" src="./images/phone_002.png" alt="black-phone" />
</div>
</section>
</section>
</main>
</body>
</html>