-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (96 loc) · 4.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello, I'm Dem0nizer</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="wrapper">
<section class="intro">
<h1 class="intro__title section-title">Привет, я Dem0nizer</h1>
<h2 class="intro__subtitle section-content">
И я <span class="sand">фронтенд разработчик</span>
</h2>
</section>
<section class="about">
<h1 class="about__title section-title">Я фронтендер</h1>
<h2 class="about__content section-content">
Со стажем 2 года. В данный момент нахожусь в поиске работы,
так что если вам нужен вебсайт, обращайтесь :)
</h2>
</section>
<section class="projects">
<h1 class="projects__title section-title">Мои проекты</h1>
<h2 class="projects__content section-content">
Постепенно их список будет пополняться. И как говорится:
<span class="sand"
>“Это не много, но это честная работа”</span
>
</h2>
<div class="projects-wrapper">
<a
class="project-card"
href="https://zeromask1337.github.io/Mathprofi/"
target="blank"
>
<div class="project-card__title">
<h2>Mathprofi</h2>
<img src="pictures/click.svg" alt="" />
</div>
<p class="project-card__content">
Это могла быть полная переработка сайта Mathprofi,
но все закончилось на одной странице...
</p>
</a>
<a
class="project-card"
href="https://github.com/zeromask1337/enderman-bot"
target="blank"
>
<div class="project-card__title">
<h2>Enderman</h2>
<img src="pictures/click.svg" alt="" />
</div>
<p class="project-card__content">
Телеграм бот для фанатов Minecraft
</p>
</a>
</div>
</section>
<section class="contact">
<h1 class="contact__title section-title">Мои контакты</h1>
<div class="contact-card">
<h3 class="contact-card__title">Максим Вышкварко</h3>
<div class="contact-card__info">
<div class="contact-card-info__name">
<p>email</p>
<p>Github</p>
<p>Telegram</p>
</div>
<div class="contact-card-info__adress">
<p>[email protected]</p>
<p>
<a
href="https://github.com/zeromask1337"
target="blank"
>zeromask1337</a
>
</p>
<p>
<a href="https://t.me/incognitus" target="blank"
>@incognitus</a
>
</p>
</div>
</div>
</div>
</section>
</div>
</body>
</html>