Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# rsschool-cv
https://AndrusSilvan.github.io/rsschool-cv/
7 changes: 7 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Andrei Silvanovich
## e-mail: andrusssilvanovich@gmail.com
phone: +375296151281
Education: International law at Belarusian State University
Programming skills - none
Project manager at Audio-reels
English - Advanced
77 changes: 77 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<html>
<head>
<link href="style.css" rel="stylesheet">
<title>ANDREI SILVANOVICH</title>
</head>

<body>
<header id="header">

<h1><b>ANDREI</b>SILVANOVICH</h1>
<div align="center"> <img alt="AnrusSilvan" src="https://ie.wampi.ru/2022/06/14/1iTiMSD9m0csW_5E5assHijTWM-YO59rAwDE8-nFMEoFct5mgnBRzRsvqiOwIaZcJJu6hjoOhBEfk_N5VwKLN7AO.jpg" width="300" height="200"/>
</div>
<hr>
PROJECT MANAGER
<hr>
</header>
<main>
<article id="mainLeft">
<section>
<h2>CONTACT</h2>
<li>&#9742;+375296151281</li>
<li>&#9993; andrusssilvanovich@gmail.com</li>
<li>&#10002; AndrusSilvan</li></p> </div>
</section>
<section>
<h2>SKILLS</h2>
<li>Git</li>
<li>Github</li>
<li>Figma</li>
<li>HTML</li>
<li>CSS</li>
</section>
<section>
<h2>EDUCATION</h2>
International Law
</section>
</article>
<article id="mainRight">
<section>
<h2>ABOUT</h2>
A Project manager at Ebay stores. 40 years old. I have a digree at International law.
</section>
<section>
<h2>WORK EXPERIENCE</h2>
<li>2017-2022 Project manager at Audio-reels store </li>
<li>2010-2022 Manager at Agrointreid</li>
<H3><div align="center"> A code example:
<pre>
<code>function compose() {
let funcs = Array.from(arguments);
return function (x) {
if (funcs.length < 1) return x;
let f = funcs[funcs.length - 1](x);
for (let i = funcs.length - 2; i ≥ 0; i--) {
f = funcs[i](f);
}
return f;
};
}</code>
</pre>
</div></H3>
<footer>
<div align="center">
<p>
<font size="4" color="red" face="Arial">
<a href="https://github.com/AndrusSilvan"> My Github</a>
<p>Minsk 2022</p>

<iframe width="400" height="200" src="https://www.youtube.com/channel/UC578nebW2Mn-mNgjEArGZug" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

</footer>
</section>
</article>
</main>
</body>
</html>
35 changes: 35 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
main {
display: grid;
grid-template-columns: 40% 60%;
margin-top: 3em;
}
header {
text-align: center;
margin: auto 2em;
}

section {
margin: auto 1em 4em 2em;
}

i {
margin-right: .5em;
}

p {
margin: .2em auto
}

hr {
border: none;
background-color: rgb(211, 211, 211);
height: 1px;
}

h1, h2, h3 {
font-weight: 100;
margin-bottom: 0;
}
#mainLeft {
border-right: 1px solid rgb(225, 17, 17);
}