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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# rsschool-cv
# rsschool-cv
## https://rosliqisha.github.io/rsschool-cv/cv
### https://rosliqisha.github.io/rsschool-cv/
Binary file added assets/Avatar.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Mikita Roslik

## Contacts
79 changes: 79 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!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">
<title>cv</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/favicon.ico">
</head>
<body>
<header>
<div class="container">
<img src="./assets/Avatar.JPG" alt="Avatar" width="200" height="200">
<h1>Mikita Roslik</h1>
<h2>RSSchool Student</h2>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item"><a href="#about-myself" class="nav-link">About Myself</a></li>
<li class="nav-item"><a href="#contacts" class="nav-link">Contacts</a></li>
<li class="nav-item"><a href="#skills" class="nav-link">Skills</a></li>
<li class="nav-item"><a href="#code-example" class="Code example">Skills</a></li>
<li class="nav-item"><a href="#education" class="nav-link">Education</a></li>
<li class="nav-item"><a href="#study-projects" class="nav-link">Study projects</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<section class="about-myself" id="about-myself">
<h2>About Myself</h2>
<p>Some info for Example</p>
</section>
<section class="contacts" id="contacts">
<h2>Contacts</h2>
<ul>
<li>Phone number: +375(44)546-56-65</li>
<li>E-mail: otemnenie@gmail.com</li>
</ul>
</section>
<section class="skills" id="skills">
<h2>Skills</h2>
<ul>
<li>Adobe Photoshop</li>
<li>Microsoft Office Word</li>
</ul>
</section>
<section class="code-example" id="code-example">
<h3>Code example</h3>
<p>Some code can be here</p>
</section>
<section class="Education" id="education">
<h3>Education and languages</h3>
<p><strong>State Medical University</strong></p>
<p>Preventive medicine faculty</p>
<p>Years: 2016-2022</p>
<p>English language level: Intermediate</p>
</section>
<section class="Study-projects" id="study-projects">
<h3>Completed study projects</h3>
<ul>
<li><a href="https://github.com/rosliqisha/rsschool-cv">Rschool CV project #1</a></li>
<li><a href="https://github.com/rosliqisha/rsschool-cv">Rschool CV project #2</a></li>
</ul>
</section>
</div>
</main>
<footer>
<div class="container">
<a class="my-github" href="https://github.com/rosliqisha">My github profile</a>
<p>2022</p>
<a href="https://rs.school/js/">
<img src="https://rs.school/images/rs_school_js.svg" alt="Rsschool icon" width="70" height="30">
</a>
</div>
</footer>
</body>
</html>
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.container {
max-width: 1440px;
margin: 0 auto;
}