-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
88 lines (88 loc) · 4.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
<!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>WebStudio</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header>
<nav>
<a href="./index.html" class="logo"><span>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>
</nav>
<ul class="site-cont">
<li> <a href="mailto:info@devstudio.com" class="link">info@devstudio.com</a> </li>
<li> <a href="tel:+380961111111" class="link">+38 096 111 11 11</a> </li>
</ul>
</header>
<main>
<section>
<h1>Наши работы</h1>
<ul class="">
<li><button type="button" class="button-filter">Все</button></li>
<li><button type="button" class="button-filter">Веб-сайты</button></li>
<li><button type="button" class="button-filter">Приложения</button></li>
<li><button type="button" class="button-filter">Дизайн</button></li>
<li><button type="button" class="button-filter">Маркетинг</button></li>
</ul>
<ul class="work-quality">
<li> <img src="./images/macbookpro.jpg" alt="macbookpro" width="370" height="294">
<h2 class="name-project">Технокряк</h2>
<p class="quality">Веб-сайт</p>
</li>
<li> <img src="./images/basketball.jpg" alt="basketball" width="370" height="294">
<h2 class="name-project">Постер New Orlean vs Golden Star</h2>
<p class="quality">Дизайн</p>
</li>
<li> <img src="./images/restaurant.jpg" alt="restaurant" width="370" height="294">
<h2 class="name-project">Ресторан Seafood</h2>
<p class="quality">Приложение</p>
</li>
<li> <img src="./images/headphones.jpg" alt="headphones" width="370" height="294">
<h2 class="name-project">Проект Prime</h2>
<p class="quality">Маркетинг</p>
</li>
<li> <img src="./images/boxes.jpg" alt="boxes" width="370" height="294">
<h2 class="name-project">Проект Boxes</h2>
<p class="quality">Приложение</p>
</li>
<li> <img src="./images/monitor.jpg" alt="monitor" width="370" height="294">
<h2 class="name-project">Inspiration has no Borders</h2>
<p class="quality">Веб-сайт</p>
</li>
<li> <img src="./images/magazine.jpg" alt="magazine" width="370" height="294">
<h2 class="name-project">Издание Limited Edition</h2>
<p class="quality">Дизайн</p>
</li>
<li> <img src="./images/label.jpg" alt="label" width="370" height="294">
<h2 class="name-project">Проект LAB</h2>
<p class="quality">Маркетинг</p>
</li>
<li> <img src="./images/laptop.jpg" alt="laptop" width="370" height="294">
<h2 class="name-project">Growing Business</h2>
<p class="quality">Приложение</p>
</li>
</ul>
</section>
</main>
<footer class="foot">
<a href="./index.html" class="foot-web"><span>Web</span>Studio</a>
<address class="foot-adress">
<ul class="site-cont">
<li> <a href="https://goo.gl/maps/F9UGEikjTN2jMp9C9" target="_blank" class="adress link">г. Киев, пр-т Леси Украинки, 26</a>
</li>
<li> <a href="mailto:info@devstudio.com" class="footer-contact link">info@devstudio.com</a> </li>
<li> <a href="tel:+380961111111" class="footer-contact link">+38 096 111 11 11</a> </li>
</ul>
</address>
</footer>
</body>
</html>