-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
138 lines (138 loc) · 4.65 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="About Mira Vyslovukh. Front end developer from Ukraine"
/>
<title>Front-End Developer Mira Vyslovukh</title>
<link rel="icon" type="image/x-icon" href="/images/logo-small.png" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/8326450c6e.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<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=Raleway&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="container">
<nav class="d-flex justify-content-between">
<a href="/"
><img
src="/images/logo.png"
class="logo d-none d-md-block"
alt="Shecodes logo" /><img
src="/images/logo-small.png"
class="logo d-block d-md-none"
alt="Shecodes logo"
/></a>
<ul>
<li><a href="/" title="Homepage">Home</a></li>
<li class="active">
<a href="/about.html" title="About Mira">About</a>
</li>
<li><a href="/work.html" title="Mira's Mork">Work</a></li>
<li><a href="contact.html" title="Contact Mira">Contact</a></li>
</ul>
</nav>
</div>
<div class="container my-container content">
<div class="row">
<div class="col-lg-6">
<div class="сontent-section-padding about">
<h1 class="mb-5">Hi I'm Mira Vyslovukh</h1>
<h5 class="mb-5">Front-end developer based in Ukraine</h5>
<p class="description">
For anyone who wants to start learning code, this workshop is very
interesting. You will be challenged with different exercises, and
everything is well explained, homework and deadlines are good for
keep focus
</p>
<div>
<a
href="/work.html"
class="branded-btn btn mt-5"
title="All projects"
>All my projects</a
>
</div>
</div>
</div>
<div class="col-lg-6">
<img
src="/images/mira-vyslovukh-pic.jpg"
alt="Mira Vyslovukh picture"
class="img-fluid avatar"
/>
</div>
</div>
<footer>
<div class="d-none d-md-flex contact-box justify-content-between mt-5">
<div class="mt-5 mb-5">
<h4>Work Inquiry</h4>
<p class="text-muted">Let's work together</p>
</div>
<div>
<a
href="/contact.html"
title="Contact Mira"
class="branded-btn btn mt-5"
>Contact me</a
>
</div>
</div>
<div class="d-flex justify-content-center mt-5 mb-5">
<a
href="mailto:[email protected]"
title="Email Mira"
class="email-link"
>
</div>
<div class="d-flex justify-content-center socials mb-5">
<a
href="https://github.com/MiraVyslovukh"
title="Mira's Github"
target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a
href="https://instagram.com/miravyslovukh"
title="Mira's Instagram"
target="_blank"
><i class="fa-brands fa-instagram"></i></a
><a href="https://twitter.com/miravy" target="_blank"
><i class="fa-brands fa-twitter"></i
></a>
</div>
<p class="text-center mb-5">
✌️ This website was coded by Mira Vyslovukh, and is
<a
href="https://github.com/MiraVyslovukh/miras-portfolio"
target="_blank"
>open-sourced</a
>
</p>
</footer>
</div>
</body>
</html>