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
Binary file added Oleksandra.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://oleksandra-rud.github.io/rsschool-cv/cv
https://oleksandra-rud.github.io/rsschool-cv/
63 changes: 63 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Rudchenko Oleksandra
***

## Frontend Developer, Marketing Specialist
***

### Contact Info:
***
- *Location: T4N, Red Deer, Alberta, Canada*
- *email: sandyrud.com@gmail.com*

### Summary:
***
I was a content manager of few online shops (support and filling). Also I am a blogger on Instagram (about 30 thousand subscribers, Ukraine). I love creating advertising campaigns. After the war in Ukraine I had to move from Kyiv to Canada.

### Skills:
***
- Strong Knowledge of Google Adwords, Adsense, Analytics
- Basic Knowledge of HTML, JS, CSS
- Hobby: Homestyler (interior design)

### Code Examples (Latest):
***
function formatDate() {
let now = new Date();
let days = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
let dayW = days[now.getDay()];

let hours =
now.getHours() < 10 ? "0" + now.getHours() : now.getHours();

let minutes =
now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes();

let fullDate = `${dayW} ${hours}:${minutes}`;
let dataReload = document.querySelector("#day-today");
dataReload.innerHTML = `${fullDate}`;
}

formatDate();

### Experience:
***
10 years in Advertising. And I had been learning Java Script for few weeks.

### Education:
***
Master's degree in Medical Devices and Systems
Basic level in SheCodes courses

### Languages
***
1. Ukrainian
2. Russian
3. English
Binary file added github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
128 changes: 128 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!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="stylesheet" href="style.css" >
<title>Oleksandra Rudchenko CV</title>
</head>
<body>
<header>
<h1>Oleksandra Rudchenko</h1>
<h3>Frontend Developer, Marketing Specialist</h3>
<div class="near-image">
<img src="Oleksandra.jpg" alt="present:)" id="photo" >
</div>
<h2>Navigation</h2>
<nav class="navigation">
<ul class="ul-navigation">
<li><a href="#about">Brief information about myself</a></li>
<li><a href="#contacts">Contacts</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#code">Code Example</a></li>
<li><a href="#project">Project Example</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#english">English Level</a></li>
</ul>
</nav>
</header>
<main>
<h2 id="about">Brief information about myself</h2>
<p>
I was a content manager of few online shops (support and filling). Also
I am a blogger on Instagram (about 30 thousand subscribers, Ukraine). I
love creating advertising campaigns. After the war in Ukraine I had to
move from Kyiv to Canada.
</p>

<h2 id="contacts">Contacts</h2>
<div class="ul-contacts">
<ul>
<li>Location: T4N, Red Deer, Alberta, Canada</li>
<li>email: sandyrud.com@gmail.com</li>
</ul>
</div>

<h2 id="skills">Skills</h2>
<div class="ul-skills">
<ul>
<li>Strong Knowledge of Google Adwords, Adsense, Analytics</li>
<li>Basic Knowledge of HTML, JS, CSS</li>
<li>Hobby: Homestyler (interior design)</li>
</ul>
</div>
<h2 id="code">Code Example</h2>
<div class="code-centr">
<pre id="code-style">
<code>
function formatDate() {
let now = new Date();
let days = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
let dayW = days[now.getDay()];
let hours =
now.getHours() &lt; 10 ?
"0" + now.getHours() : now.getHours();
let minutes =
now.getMinutes() &lt; 10 ?
"0" + now.getMinutes() : now.getMinutes();

let fullDate = `${dayW} ${hours}:${minutes}`;
let dataReload = document.querySelector("#day-today");
dataReload.innerHTML = `${fullDate}`;
}
formatDate();
</code>
</pre>
</div>

<h2 id="project">Project Example</h2>
<p>
<a href="https://github.com/Oleksandra-Rud" target="_blank"
>There are my projects - GitHub</a
>
</p>
<h2 id="education">Education</h2>
<div class="ul-education">
<ul>
<li>Master’s degree in Medical Devices and Systems</li>
<li>Basic level in SheCodes courses</li>
<li>10 years in Advertising</li>
<li>I had been learning Java Script for few weeks</li>
</ul>
</div>
<h2 id="english">English Level</h2>
<p>
I have B2 English level. In Canada I got my assessment with such scores:
</p>
<div class="ul-english">
<ul>
<li>Speaking: 6 / 8</li>
<li>Listening: 5 / 8</li>
<li>Writing: 5 / 8</li>
<li>Reading: 8 / 8</li>
</ul>
</div>
</main>
<footer>
<a href="https://github.com/Oleksandra-Rud" target="_blank"
><img src="github.png" alt="githublogo" id="gitimage" > My github</a
>

<a href="https://rs.school/js-en/" target="_blank"
><img src="rsschool.png" alt="rsschoollogo" id="rssimage" >Rs.school
(Javascript/Front-end Mentoring Program (in English))</a
>

<div class="data">October, 2022</div>
</footer>
</body>
</html>
Binary file added rsschool.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
body {
background-color: rgba(247, 243, 225, 0.925);
margin-top: 0%;
margin-bottom: 0%;
margin-left: 5%;
margin-right: 5%;
}

h1 {
background-color: rgba(144, 115, 170, 0.932);
color: rgba(238, 238, 226, 0.925);
text-align: center;
font-size: 40px;
margin-top: 0%;
margin-bottom: 0px;
}
h2 {
background-color: rgba(253, 251, 243, 0.925);
color: rgba(148, 125, 170, 0.829);
text-align: center;
}
h3 {
margin-top: 0%;
margin-bottom: 0%;
background-color: rgba(117, 88, 141, 0.932);
color: rgba(229, 221, 235, 0.925);
text-align: center;
}
p {
text-align: center;
margin-left: 25%;
margin-right: 25%;
}

footer {
text-align: center;
background-color: rgba(144, 115, 170, 0.932);
margin-bottom: 0%;
}

.navigation,
.ul-contacts,
.ul-skills,
.ul-english,
.ul-education,
.code-centr {
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.ul-navigation {
margin-top: 0%;
list-style: decimal;
}
.data {
margin-top: 10px;
background-color: rgba(117, 88, 141, 0.932);
color: rgba(229, 221, 235, 0.925);
}
.near-image {
background-color: rgba(223, 213, 231, 0.932);
}
#code-style {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-left: 5%;
margin-right: 5%;
background-color: rgb(56, 40, 59);
color: whitesmoke;
border-radius: 4px;
}
#rssimage {
width: 130px;
}
#gitimage {
width: 80px;
}
#photo {
display: block;
margin: 0% auto;

width: 200px;
margin-top: 0%;
}