-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-page.html
119 lines (117 loc) · 3.73 KB
/
project-page.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
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
<!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>my_freelance_portfolio</title>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<div class="wrap">
<!-- nav -->
<nav class="nav">
<div class="container">
<div class="nav-row">
<a href="./index.html" class="logo"
><strong>Freelancer</strong> portfolio</a
>
<button class="dark-mode-btn">
<img
src="./img/icons/sun.svg"
alt="Light mode"
class="dark-mode-btn__item"
/>
<img
src="./img/icons/moon.svg"
alt="Dark mode"
class="dark-mode-btn__item"
/>
</button>
<ul class="nav-list">
<li class="nav-list__item">
<a
href="./project-page.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 -->
<header class="header">
<div class="header__wrapper">
<h1 class="header__title">
<strong>Hi, my name is <em>Artem</em></strong
><br />a frontend developer
</h1>
<div class="header__text">
<p>with passion for learning and creating.</p>
</div>
<a href="#!" class="btn">Download CV</a>
</div>
</header>
<!-- main -->
<main class="section">
<div class="container">
<div class="project-details">
<h1 class="title-1">Video service</h1>
<img
src="./img/projects/02-big.jpg"
alt=""
class="project-details__cover"
/>
<div class="project-details__desc">
<p>Skills: React, Node.js, MongoDB</p>
</div>
<a href="#!" class="btn-outline"
><img src="./img/icons/gitHub-black.svg" alt="" />GitHub repo</a
>
</div>
</div>
</main>
<!-- footer -->
<footer class="footer">
<div class="container">
<div class="footer__wrapper">
<ul class="social">
<li class="social__item">
<a href="#!"><img src="./img/icons/vk.svg" alt="Link" /></a>
</li>
<li class="social__item">
<a href="#!"
><img src="./img/icons/instagram.svg" alt="Link"
/></a>
</li>
<li class="social__item">
<a href="#!"
><img src="./img/icons/twitter.svg" alt="Link"
/></a>
</li>
<li class="social__item">
<a href="#!"><img src="./img/icons/gitHub.svg" alt="Link" /></a>
</li>
<li class="social__item">
<a href="#!"
><img src="./img/icons/linkedIn.svg" alt="Link"
/></a>
</li>
</ul>
<div class="copyright">
<p>© 2022 frontend-dev.com</p>
</div>
</div>
</div>
</footer>
</div>
<script src="./js/main.js"></script>
</body>
</html>