-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (145 loc) Β· 5.17 KB
/
index.html
File metadata and controls
147 lines (145 loc) Β· 5.17 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CV - Ocat</title>
<meta name="description" content="simple CV example created with HTML and CSS">
<meta name="author" content="Fly Nerd">
<link rel="icon" href="./img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>
<img src="./img/avatar.jpg" />
</div>
<h1>Ocat Verdigris</h1>
<section>
<p>Hello! I am Ocat Verdigris. I work as interface and front-end developer. I have passion for pixel perfect, minimal and easy to use interfaces. I'm focused, dedicated, hard-working and willing to learn in a changing and challenging environment.</p>
<a href="https://www.facebook.com/flynerdpl/" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.twitter.com/flynerdpl/" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/ritaly" target="_blank">
<i class="fab fa-github-alt"></i>
</a>
<a href="https://www.instagram.com/flynerdpl/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/ritalyczywek/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</section>
</header>
<main>
<section>
<h3>Courses & Workshops</h3>
<article class='course'>
<div class='title'>
<h4>Udacity: Intro to HTML and CSS</h4>
</div>
<div class="descrition">
<p>Build styled, well-structured websites. Learn how to use HTML5 standard to create websites. Understand CSS syntax, selectors, and units. Learn about code editors and a browser's Developer Tools.</p>
</div>
</article>
<article class='course'>
<div class='title'>
<h4>Udemy: The Web Developer Bootcamp</h4>
</div>
<div class="descrition">
<p>Learn how to create full-stack web applications from scratch using HTML, CSS, JavaScript, jQuery, VanillaJS, NodeJS, MongoDB.</p>
</div>
</article>
<article class='course'>
<div class='title'>
<h4>EdX: Web Programming with JavaScript</h4>
</div>
<div class="descrition">
<p>Learn how to create web apps and prototypes with JavaScript, represent and exchange data using JavaScript Object Notation (JSON), and how to access RESTful APIs on the web.</p>
</div>
</article>
<article class='course'>
<div class='title'>
<h4>Django Girls: 2-Day Workshops</h4>
</div>
<div class="descrition">
<p>Learn back-end development with simple blog application using Django framework.</p>
</div>
</article>
</section>
<section>
<h3>Skills</h3>
<div class='skills'>
<div class='column'>
<h4>Good knowledge</h4>
<ul>
<li>HTML5</li>
<li>CSS</li>
<li>JavaScript ES5/6</li>
<li>SQL</li>
</ul>
</div>
<div class='column'>
<h4>Basic knowledge</h4>
<ul>
<li>jQuery</li>
<li>NodeJS</li>
<li>MongoDB</li>
<li>Django</li>
</ul>
</div>
<div>
<h4>Languages</h4>
<p>π΅π± Polish - Native speaker</p>
<p>π¬π§ English - Proficient C1/C2</p>
<p>π«π· French - Advanced - C1</p>
<p>πͺπΈ Spanish - Intermediate - B1/B2</p>
<p>π©πͺ German - Elementary / Communicative - A2</p>
</div>
</div>
</section>
<section>
<h3>Education</h3>
<article>
<div class='school'>
<span>2015-2018</span> <strong>Octocats tech academy</strong>
</div>
<div class="descrition">
Bechelor Degree of Octorobotics
</div>
</article>
<article>
<div class='school'>
<span>2012-2015</span> <strong>Underwater kittens high school</strong>
</div>
<div>
Main subject: Cathemathics
</div>
</article>
</section>
<section>
<h3>Experience</h3>
<article>
<div class='job-title'>
<span>03.2018 - 06.2018</span> <strong>Tentacles Company</strong><br> <strong>Position:</strong> Web developer Intern
</div>
<div>
<p><strong>Tech stack:</strong> HTML5 / CSS / JavaScript / jQuery</p>
<ul class="job-description">
<li>Develop web application for Octopoda departments</li>
<li>Implement UI (front-end site) based on received graphic design and requirements</li>
<li>Co-operate with the back-end team </li>
</ul>
</div>
</article>
</section>
</main>
<footer>
<p>Created by: <a href="https://www.flynerd.pl/">@flynerd</a> / <a href="https://www.linkedin.com/in/ritalyczywek/">LinkedIn</a> / 2018 </p>
</footer>
</body>
</html>