-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.52 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Про меня</title>
<link rel="shortcut icon" href="res/me.png" type="image/png" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="hero">
<div class="container hero-container">
<div class="hero-about">
<h1 class="hero-title">Артем</h1>
<p class="hero-description">
Привет, я учусь в ИТМО. Можете написать мне в
<a class="hero-description__link" href="https://t.me/cumsayhello"
>телеграм.</a
>
</p>
<p class="hero-description">
Я очень люблю котиков, поэтому
<a class="hero-description__link" href="content.html">тут</a>
вы можете посмотреть видео и полистать фото c ними...
</p>
</div>
<div class="hero-box">
<img class="hero-box__img" src="res/me.png" alt="Это я" />
</div>
</div>
</div>
</body>
</html>