forked from WebHeroSchool/1111111111111
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
41 lines (41 loc) · 1.6 KB
/
blog.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.google.com/?vfonly=true&sidebar.open=true&query=oswald" rel="stylesheet">
<title>HTML структура документа</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" >
<link rel="stylesheet" href="font.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>
<div class="logo__mobile">app.creation</div>
</div>
<input id="menu__toggle" type="checkbox"/>
<nav class = "menu">
<a class = "menu__item" href="start.html">start</a>
<a class = "menu__item" href="index.html">services</a>
<a class = "menu__item" href="about.html">about</a>
<a class = "menu__item menu__item_active" href="blog.html">blog</a>
<a class = "menu__item" href="contact_us.html">contact us</a>
</nav>
<label class="menu__btn" for="menu__toggle">
<span></span>
</label>
</header>
<main class = "main">
<h1 class="main__title">Building an App
<span class = "main__title_text_highlight">Without Design Expertise?</span>
</h1>
<p class="main__description">I help tech startups design better digital products without hiring a full-time designer</p>
<a class="main__button" href="#">Schedule free consultation</a>
</main>
</div>
</body>
</html>