-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (77 loc) · 3.22 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
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
<!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>Onione Tamiko Portfolio</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<nav class="nav">
<div class="container">
<div class="nav-row">
<a href="./index.html" class="logo"><strong>Onione Tamiko</strong> Portfolio</a>
<button class="dark-mode-btn">
<img src="./img/icons/sun.svg" alt="Light mode" class="dark-mode-btn__icon">
<img src="./img/icons/moon.svg" alt="Dark mode" class="dark-mode-btn__icon">
</button>
<ul class="nav-list">
<li class="nav-list__item"><a href="./index.html" class="nav-list__link nav-list__link--active">Projects</a></li>
<li class="nav-list__item"><a href="./skills.html" class="nav-list__link">Skills</a></li>
<li class="nav-list__item"><a href="./contacts.html" class="nav-list__link">Contacts</a></li>
</ul>
</div>
</div>
</nav>
<header class="header">
<div class="header__wrapper">
<h1 class="header__title">
<strong>Hi, my name is <em>Artem</em></strong><br>
a Python developer
</h1>
<div class="header__text">
<p>with passion for learning and creating.</p>
</div>
</div>
</header>
<main class="section">
<div class="container">
<h2 class="title-1">Projects</h2>
<ul class="projects">
<li class="project">
<a href="https://github.com/Onione-Tamiko">
<img src="./img/projects/01.jpg" alt="Project img" class="project__img">
<h3 class="project__title">Howee Traiding Steam</h3>
</a>
</li>
<li class="project">
<a href="https://github.com/Onione-Tamikol">
<img src="./img/projects/02.jpg" alt="Project img" class="project__img">
<h3 class="project__title">Howee CS Panel</h3>
</a>
</li>
<li class="project">
<a href="https://github.com/Onione-Tamiko/Online-Currency-Converter">
<img src="./img/projects/03.jpg" alt="Project img" class="project__img">
<h3 class="project__title">Currency Conventer</h3>
</a>
</li>
</ul>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="footer__wrapper">
<ul class="social">
<li class="social__item"><a href="https://github.com/Onione-Tamiko"><img src="./img/icons/gitHub.svg" alt="Link"></a></li>
</ul>
<div class="copyright">
<p>©2024 Onione Tamiko</p>
</div>
</div>
</div>
</footer>
<script src="./js/main.js"></script>
</body>
</html>