-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (49 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>app.creation</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto&display=swap">
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="logo">
<div class="logo__circle logo__circle_color_dark-blue"></div>
<div class="logo__circle logo__circle_color_blue"></div>
<span class="logo__text">app.creation</span>
</div>
<div class="hamburger-menu">
<input id="menu__toggle" type="checkbox"/>
<label class="menu__btn" for="menu__toggle">
<span></span>
</label>
<nav class="menu">
<a class="menu__item" href="#">start</a>
<a class="menu__item menu__item_active" href="#">services</a>
<a class="menu__item" href="#">about</a>
<a class="menu__item" href="#">blog</a>
<a class="menu__item" href="#">contact us</a>
</nav>
</div>
</header>
<section class="main">
<h1 class="main__title">
Building an App
<span class="main__title-text_highlight">
Without Design Expertise?
</span>
</h1>
<p class="main__subtitle">
I help tech startups design better digital products without hiring a full-time designer
</p>
<a class="main__button" href="#">
Schedule free consultation
</a>
</section>
</div>
</body>
</html>