-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="img/favicon.png">
<title>Personal Folio</title>
</head>
<body>
<div class="page">
<!-- Header -->
<header class="header">
<div class="container">
<div class="header-inner">
<div class="header-brand">
WEBDEVELOPER
</div>
<div class="header-logo">
<img src="img/code.svg" alt="">
</div>
<nav class="header-nav">
<a class="header-nav__link active" href="index.html">Home</a>
<a class="header-nav__link" href="about.html">About me</a>
<a class="header-nav__link" href="contacts.html">Contacts</a>
</nav>
</div>
</div> <!-- /.container -->
</header>
<div class="container">
<div class="content">
<div class="content-header">
<h2 class="subtitle">My name is</h2>
<h1 class="title">Yuriy Kuznetsov and I’m <span>Web Developer</span></h1>
</div>
<div class="text">
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ‘Content here, content here’, making it look like readable English. Many desktop publishing </p>
</div>
<a class="btn" href="contacts.html">Contact me</a>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="contacts">
<a class="contacts-link" href="mailto:yakuznecov@mail.ru">
<img class="contacts-icon" src="img/mail.svg" alt="">yakuznecov@mail.ru
</a>
<a class="contacts-link" href="#">
<img class="contacts-icon" src="img/skype.svg" alt="">Skype: yuragross
</a>
</div>
</div>
</footer>
<img class="author" src="img/me.png" alt="me">
</div><!-- /.page -->
</body>
</html>