Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

for the task "Markdown & Git" #1

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
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
48 changes: 48 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
h1 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 40px;
font-weight: bold;
}
h2 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
font-weight: bold;
background-color: beige;
padding: 10px;
}
p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
}
ul {
list-style-type: circle;
}
li {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
}
pre {
max-width: 40%;
background-color: rgb(236, 231, 231);
padding: 5px;
text-align: left;
font-size: 14px;
line-height: 150%;
}
.wrapper {
max-width: 1024;
margin: o auto;
padding: 5px 20px;
line-height: 200%;
}
.flex {
display: flex;
flex-direction: row;
}
.photo-container {
padding: 5px;
margin: 0 10px;
}
.text-container {
padding: 40px 5px 5px 5px;
}
58 changes: 58 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Halyna, Nurieieva

***

## CONTACT INFO
* e-mail: [email protected]
* viber: +380674368386
* telegram: Gallko Nurieieva

***

## Summary
I want to make good full-stack applications, evolving all the time, explore new technologies and successfully apply them.

***

## Skills
- HTML
- CSS
- Adobe Photoshop
- Joomla
- to some extent javascript
- node.js
- Wordpress

***

## CODE
```html
<div class="tabsWraper">
<div class="cont" data-target="one">
<p class="tex">Text and text</p>
</div>
<div class="cont" data-target="two">
<p class="tex">Text and text</p>
</div>
<div class="cont" data-target="three">
<p class="tex">Text and text</p>
</div>
</div>
```

***

## Experience
* SEO
* content management
* SMM

***

## Education
humanitarian only

***

## English
school level (grammar, reading)
Binary file added images/x_079f1df535.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<header class="flex">
<div class="photo-container">
<img src="images/x_079f1df535.jpg" alt="my photo">
</div>
<div class="text-container">
<h1>Halyna Nurieieva</h1>
</div>
</header>
<main>
<section>
<h2>Contact info</h2>
<hr>
<ul>
<li>e-mail: [email protected]</li>
<li>viber: +380674368386</li>
<li>telegram: Gallko Nurieieva</li>
</ul>
<hr>
</section>
<section>
<h2>Summary</h2>
<hr>
<p>I want to make good full-stack applications, evolving all the time, explore new technologies and successfully apply them.</p>
<hr>
</section>
<section>
<h2>Skills</h2>
<hr>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Adobe Photoshop</li>
<li>Joomla</li>
<li>to some extent javascript
<ul>
<li>node.js</li>
<li>Wordpress</li>
</ul>
</li>
</ul>
<hr>
</section>
<section>
<h2>Code</h2>
<hr>
<code>
<pre>
&lt;div class="tabsWraper"&gt;
&lt;div class="cont" data-target="one"&gt;
&lt;p class="tex"&gt;Text and text &lt;/p&gt;
&lt;/div&gt;
&lt;div class="cont" data-target="two"&gt;
&lt;p class="tex"&gt;Text and text &lt;/p&gt;
&lt;/div&gt;
&lt;div class="cont" data-target="three"&gt;
&lt;p class="tex"&gt;Text and text &lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
</pre>
</code>
<hr>
</section>
<section>
<h2>Experience</h2>
<hr>
<ul>
<li>SEO</li>
<li>content management</li>
<li>SMM</li>
</ul>
<hr>
</section>
<section>
<h2>Education</h2>
<hr>
<p>humanitarian only</p>
<hr>
</section>
<section>
<h2>English</h2>
<hr>
<p>school level (grammar, reading)</p>
<hr>
</section>
</main>
</div>
</body>
</html>