-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio.html
101 lines (101 loc) · 3.56 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Roboto:wght@400;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/0.7.0/modern-normalize.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<title>Portfolio</title>
</head>
<body>
<!-- Шапка сайта -->
<header>
<nav>
<a href="./index.html" lang="en" class="logo"><span class="logo-accent">Web</span>Studio</a>
<ul class="site-nav">
<li><a href="./index.html" class="link">Студия</a></li>
<li><a href="./portfolio.html" class="link current">Портфолио</a></li>
<li><a href="/" class="link">Контакты</a></li>
</ul>
<address class="site-nav">
<a href="mailto:info@devstudio.com " class="link">info@devstudio.com</a><br />
<a href="tel:+380961111111" class="link">+38 096 111 11 11</a>
</address>
</nav>
</header>
<!-- Уникальный контент -->
<main>
<!-- секция фильтров по проэктам -->
<section>
<h1>Перечень проектов</h1>
<ul class="btn-list">
<li><button class="button">Веб-сайты</button></li>
<li><button class="button">Приложения</button></li>
<li><button class="button">Все</button></li>
<li><button class="button">Дизайн</button></li>
<li><button class="button">Маркетинг</button></li>
</ul>
</section>
<!-- Секция проэктов -->
<section>
<ul class="portfolio">
<li>
<img src="./img/project1.jpg" alt="project1 " width="370" />
<h2 class="project-title">Технокряк</h2>
<p class="project-description">Веб-сайт</p>
</li>
<li>
<img src="./img/project2.jpg" alt="project2" width="370" />
<h2>Постер New Orlean vs Golden Star</h2>
<p>Дизайн</p>
</li>
<li>
<img src="./img/project3.jpg" alt="project3" width="370" />
<h2>Ресторан Seafood</h2>
<p>Приложение</p>
</li>
<li>
<img src="./img/project4.jpg" alt="project4" width="370" />
<h2>Проект Prime</h2>
<p>Маркетинг</p>
</li>
<li>
<img src="./img/project5.jpg" alt="project5" width="370" />
<h2>Проект Boxes</h2>
<p>Приложение</p>
</li>
<li>
<img src="./img/project6.jpg" alt="project6" width="370" />
<h2>Inspiration has no Borders</h2>
<p>Веб-сайт</p>
</li>
<li>
<img src="./img/project7.jpg" alt="project7" width="370" />
<h2>Издание Limited Edition</h2>
<p>Дизайн</p>
</li>
<li>
<img src="./img/project8.jpg" alt="project8" width="370" />
<h2>Проект LAB</h2>
<p>Маркетинг</p>
</li>
<li>
<img src="./img/project9.jpg" alt="project9" width="370" />
<h2>Growing Business</h2>
<p>Приложение</p>
</li>
</ul>
</section>
</main>
<!-- Футер -->
<footer class="ftr">
<a href="./index.html" class="logo ftr"><span class="logo-accent">Web</span>Studio</a>
<address>
<p>г. Киев, пр-т Леси Украинки, 26</p>
<a href="mailto:info@devstudio.com " class="ftr-contacts">info@devstudio.com</a><br />
<a href="tel:+380961111111" class="ftr-contacts"> +38 096 111 11 11</a>
</address>
</footer>
</body>
</html>