-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (156 loc) · 5.15 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>YauheniNatynchyk</title>
</head>
<body>
<!-- partial:index.partial.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Student Resume </title>
<style>
body { font: italic small-caps bold 20px/2 cursive;
text-align: center;
line-height: 2.5em;
}
.text {
color:white;
}
#aboutme {
width:70%;
overflow: auto;
margin: 20px auto;
border: 6px rgb(25, 116,210) solid;
background-image: url('https://i.imgur.com/qlPWf6B.jpeg');
background-size: cover;
box-shadow: 1px 1px 2px white, 0 0 1em blue, 0 0 0.2em blue;
padding: 6px;
}
.background-image {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: url('https://i.imgur.com/OqyKIq7.jpeg') no-repeat center center/cover;
filter: blur(5px);}
#contacts {
margin: 20px auto;
width: 70%;
background-image: url('https://i.imgur.com/qlPWf6B.jpeg');
background-size: cover;
border: 6px rgb(25, 116,210) solid;
box-shadow: 1px 1px 2px white, 0 0 1em blue, 0 0 0.2em blue;
padding: 6px;
}
.two-column-list {
align-content: center;
display: grid;
grid-template-columns: 1fr 1fr; /* 2 columnss with widht*/
gap: 10px; /* space between*/}
.two-column-list li {
max-width: 200px; /* max widht of column */
word-wrap: break-word; /* word break (test it)*/
justify-content: center; /* horizontal center-align??? */
}
.header {
text-shadow: 1px 1px 2px white, 0 0 1em blue, 0 0 0.2em blue;
}
p {
color: white;
font-family: "Courier New", sans-serif;
font-size: 20px;
}
h1 {
color: white;
font-size: 40px;
text-shadow: 1px 1px 2px white, 0 0 1em blue, 0 0 0.2em blue;
}
h2{
color: red;
font-size: 27px;
}
ul {
color: white;
text-align: left;
font: monospace 20px bold;
text-decoration: underline;
}
.positives
{
width: 70%;
margin: auto;
border: 6px solid rgb(25, 116,210);
background-image: url('https://i.imgur.com/qlPWf6B.jpeg');
backdrop-filter: blur(5px);
background-size: cover;
box-shadow: 1px 1px 2px white, 0 0 1em blue, 0 0 0.2em blue;
padding: 6px;
}
#cat {width: 100px;
margin-left: 10px;
margin-bottom: 0px;}
</style>
</head>
<body>
<div class="background-image"></div>
<header>
<h1> My student resume </h1>
</header>
<main>
<article>
<section>
<div id="aboutme">
<h2 class="header">About me:</h2>
<p>Hi, my name is <strong>Yauheni</strong>.<br> I am from <em>Belarus</em>, small city of <em>Pinsk</em>.<br> I'm <strong>25 years old</strong>.
I'm participating in MigraCode entrance exam and that's my showpage.<br>
I like animals and rainy weather :)
<br>
I don't like to pay my bills, because they're so expensive in <abbr title="At least in barcelona for sure.">Spain</abbr> :(
</p> </div>
</section>
<section> <div class="positives">
<h2 class="header"> My positive qualities </h2>
<p>So, let me tell you my positive qualities that I think make me a great candidate:</p>
<blockquote>
<ul class="two-column-list">
<li>Learning fast</li>
<li>Flexible </li>
<li> Curious </li>
<li> Tolerant and open</li>
<li>Love kittens xd</li>
<li>I'm a big tech-enjoyer</li>
<li>Motivated</li>
</ul>
</blockquote>
<p>I also started learning Java on FreeCodeCamp to prepare for the start of the course,
and I promise (first and foremost to myself) to put 120% effort into studying :)
</p>
<img id="cat" src="https://i.imgur.com/6gU9m8O.png" width="100" height="100" alt="Cittie Kitty">
</div>
</section>
<div id="contacts"> <h2 class="header">Some of my contacts</h2>
<p>
<a class="logo" href="https://www.instagram.com/kongruenti/">
<img src="https://i.imgur.com/jWnHAAy.png" width="50" height="50" alt="Instagram Profile">
</a>
<a class="logo" href="https://www.facebook.com/evgeniy.natynchik/">
<img src="https://i.imgur.com/VgkNYXI.png" width="50" height="50" alt="Facebook Profile">
</a>
<a class="logo" href="https://t.me/holodnaya_vesna">
<img src="https://i.imgur.com/gjrzSSM.png" width="50" height="50" alt="telegram profile"> </a>
<footer class="header">
<a href="https://api.whatsapp.com/send?phone=34600354121"> +34-600-354-121 </a>
</footer>
</p> </div>
</article>
</main>
</body>
</html>
<!-- partial -->
</body>
</html>