-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
112 lines (107 loc) · 4.05 KB
/
about.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/icons/black-cross.png" type="image/x-icon"/>
<link rel="stylesheet" href="styles/global.css" type="text/css" />
<link rel="stylesheet" href="styles/media.css" type="text/css" />
<link rel="stylesheet" href="styles/header.css" type="text/css" />
<link rel="stylesheet" href="styles/about.css" type="text/css" />
<link rel="stylesheet" href="styles/footer.css" type="text/css" />
<!--Google-fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://unpkg.com/open-props" />
<title>Sasha Kravets - About Me</title>
</head>
<body>
<header id="header" class="header_open_border_radius">
<section id="header_top" class="header_top visible_line_height">
<div class="menu_visible_line">
<a class="header_photo" id="top_link" href="#">
<img
class="header_photo"
src="assets/icons/header_photo.JPG"
alt="kinda_a_photo"
/>
</a>
<a
href="index.html"
id="back_home_link"
class="back_home_button transition_out_effect transition_in_effect"
>
<p class="back_home_p">Back Home</p></a
>
</div>
</section>
</header>
<main class="about_container transition_out_effect transition_in_effect">
<section class="photo_head margin_bottom">
<div class="about_photo_bg">
<img
class="about_head_photo"
src="assets/icons/about_photo.JPG"
alt="ME"
/>
<p class="about_photo_description">
D:/photo/Germany/Brandenburg/july2023
</p>
</div>
</section>
<section class="about_bio">
<article class="header_bio about_me_article">
<p class="margin_bottom">
Hey, I’m Sasha. Currently I’m an enthusiastic freelance designer
interested in any kind of experience. I focus on responsive and
intuitive designs as well as on experimental ones, with my combined
passion for art and digitalism; When I am not sharpening or
extending my design skills, I am probably reading Substack, writing
poetry, painting or roaming the Earth thinking about how can I make
the world even better.
</p>
<p>
By the way, there will be something interesting on
<a
class="youtube_link"
target="_blank"
href="https://youtu.be/dQw4w9WgXcQ"
>YouTube</a
> soon.
</p>
</article>
</section>
</main>
<footer class="copyright_footer transition_out_effect transition_in_effect">
<div class="footer_top">
<div class="email_me_section margin_bottom">
<p class="header_bio email_me_text margin_bottom">
Maybe you have something in mind? Drop me a line!;//
</p>
<a
class="email_me_link"
target="_blank"
href="mailto:kindakravets@gmail.com"
>Email me</a
>
</div>
</div>
<div class="copyright_footer_bottom">
<p>©2023-2024</p>
<a target="_blank" href="https://youtu.be/dQw4w9WgXcQ"
><img
class="sasha_logo"
src="assets/icons/sasha!_logo.png"
alt="logo"
/></a>
</div>
</footer>
<script src="scripts/header.js"></script>
<script src="scripts/about_transition_out.js"></script>
</body>
</html>