-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.62 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<title>About me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<img class="logo" src="img/logo.png" alt="logo">
<div class="header-title">About me</div>
</div>
<div class="content">
<div class="post">
<h2>Who am I?</h2>
<p>I'm a student of <a href="https://en.wikipedia.org/wiki/Lviv_Polytechnic">Lviv Polytechnic National University</a>. I'm engineer, and my future profession closely linked with computers and programming. In my spare time I create web pages, write scripts in python and small apps in C(C99). I like it!</p>
<h2>I use:</h2>
<div class="tech-wrap">
<img src="img/python.png" alt="python" class="tech">
<img src="img/c.png" alt="c language" class="tech">
<img src="img/html5.png" alt="html5" class="tech">
<img src="img/css3.png" alt="css3" class="tech">
<img src="img/js.png" alt="javascript" class="tech">
<img src="img/cpp.png" alt="c++" class="tech">
</div>
<h2>Some of my works:</h2>
<ul>
<li><a href="./bootstrap-practice/index.html">Bootstrap practice</a></li>
<li><a href="./knowledge-circuit/index.html">Knowledge circuit</a></li>
</ul>
<h2>Contacts:</h2>
<ul>
<li>[email protected]</li>
</ul>
</div>
</div>
<div class="footer">tuoris.github.io <span>2015 - 2016</span></div>
</body>
</html>