-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
105 lines (105 loc) · 4.22 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
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Studio</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
</head>
<body>
<!--Header section-->
<header class="header">
<h1 class="logo"><a href="#"><span class="logo-color">Web</span>Studio</a></h1>
<nav>
<ul class="header-list">
<li class="header-item"><a href="index.html">Studio</a></li>
<li class="header-item"><a href="portfolio.html">Portfolio</a></li>
<li class="header-item"><a href="contacts.html">Contacts</a></li>
</ul>
</nav>
<ul class="header-list">
<li class="header-item"><a href="#">[email protected]</a></li>
<li class="header-item"><a href="#">+1-212-772-4150</a></li>
</ul>
</header>
<!--main part section-->
<main>
<div class="buttons">
<button type="button" class="button">All</button>
<button type="button" class="button">Web-sites</button>
<button type="button" class="button">Apps</button>
<button type="button" class="button">Design</button>
<button type="button" class="button">Marketing</button>
</div>
<section class="product-grid">
<div class="product">
<img src="./images/technoduck.jpg" width="370" alt="technoduck">
<h4>Technoduck</h4>
<p>Web-site</p>
</div>
<div class="product">
<img src="./images/poster.jpg" width="370" alt="poster">
<h4>Poster New Orleans vs Golden Star</h4>
<p>Design</p>
</div>
<div class="product">
<img src="./images/restaurant.jpg" width="370" alt="restaurant">
<h4>Seafood Restaurant</h4>
<p>Apps</p>
</div>
<div class="product">
<img src="./images/project_prime.jpg" width="370" alt="project_prime">
<h4>Project Prime</h4>
<p>Marketing</p>
</div>
<div class="product">
<img src="./images/project_boxes.jpg" width="370" alt="project_boxes">
<h4>Project Boxes</h4>
<p>Apps</p>
</div>
<div class="product">
<img src="./images/inspiration.jpg" width="370" alt="inspiration">
<h4>Inspiration has no Borders</h4>
<p>Web-site</p>
</div>
<div class="product">
<img src="./images/limited_ed.jpg" width="370" alt="limited_ed">
<h4>Limited Edition</h4>
<p>Design</p>
</div>
<div class="product">
<img src="./images/project_lab.jpg" width="370" alt="project_lab">
<h4>Project LAB</h4>
<p>Marketing</p>
</div>
<div class="product">
<img src="./images/growing_business.jpg" width="370" alt="growing_business">
<h4>Growing Business</h4>
<p>Apps</p>
</div>
</section>
</main>
<!--footer section-->
<footer class="footer">
<h3 class="footer-title"><a href="#"><span class="blue">Web</span>Studio</a></h3>
<div>
<address>
<ul class="footer-list">
<li class="footer-item">695 Park Ave, NY 10065, USA</li>
<li class="footer-item">
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li class="footer-item">
<a href="tel:+1212-772-4150">+1 212-772-4150</a>
</li>
</ul>
</address>
</div>
</footer>
</body>
</html>