generated from renaerdelyi/goit-markup-hw-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
154 lines (153 loc) · 5.13 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<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=Raleway:ital,wght@0,700;1,700&family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!--header section-->
<header class="header-section">
<div>
<a class="logo" href="#"
><p><span class="span">Web</span>Studio</p></a
>
</div>
<nav class="header-section__nav">
<ul class="nav-links">
<li><a class="nav-link" href="index.html">Studio</a></li>
<li>
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li><a class="nav-link" href="#">Contacts</a></li>
</ul>
</nav>
<div>
<a class="header-section__mail" href="mailto:[email protected]"
>
<a class="header-section__tel" href="tel:++1212-772-4150"
>+1 212-772-4150</a
>
</div>
</header>
<main>
<!--filtru section-->
<div>
<ul class="btn-list">
<li><button class="btn-item" type="button">All</button></li>
<li><button class="btn-item" type="button">Web-sites</button></li>
<li><button class="btn-item" type="button">Apps</button></li>
<li><button class="btn-item" type="button">Design</button></li>
<li><button class="btn-item" type="button">Marketing</button></li>
</ul>
</div>
<!-- cards section-->
<section class="cards-section">
<div>
<!--div 1st card-->
<div>
<img
src="./images/photo-1.jpg"
alt="photo descktop images"
width="400"
/>
<h4 class="cards-section__title">Technoduck</h4>
<p class="cards-section__subtitle">Web-site</p>
</div>
<!--div 2rd card-->
<div>
<img
src="./images/photo-2.jpg"
alt="basketball players photo "
width="400"
/>
<h4 class="cards-section__title">
Poster New Orlean vs Golden Star
</h4>
<p class="cards-section__subtitle">Design</p>
</div>
<!--div 3rd card-->
<div>
<img
src="./images/photo-3.jpg"
alt=" food logo photo"
width="400"
/>
<h4 class="cards-section__title">Seafood Restaurant</h4>
<p class="cards-section__subtitle">Apps</p>
</div>
<!--div 4th card-->
<div>
<img src="./images/photo-4.jpg" alt="headset photo" width="400" />
<h4 class="cards-section__title">Project Prime</h4>
<p class="cards-section__subtitle">Marketing</p>
</div>
<div>
<img src="./images/photo-5.jpg" alt="2boxes" width="400" />
<h4 class="cards-section__title">Project Boxes</h4>
<p class="cards-section__subtitle">Apps</p>
</div>
<div>
<img src="./images/photo-6.jpg" alt="monitor" width="400" />
<h4 class="cards-section__title">Inspiration has no Borders</h4>
<p class="cards-section__subtitle">Web-site</p>
</div>
<div>
<img src="./images/photo-7.jpg" alt="book pages" width="400" />
<h4 class="cards-section__title">Limited Edition</h4>
<p class="cards-section__subtitle">Design</p>
</div>
<div>
<img
src="./images/photo-8.jpg"
alt="description lab el tag"
width="400"
/>
<h4 class="cards-section__title">Project LAB</h4>
<p class="cards-section__subtitle">Marketing</p>
</div>
<div>
<img
src="./images/photo-9.jpg"
alt="work on the laptop"
width="400"
/>
<h4 class="cards-section__title">Growing Business</h4>
<p class="cards-section__subtitle">Apps</p>
</div>
</div>
</section>
</main>
<!--footer section-->
<footer class="footer-section">
<div>
<a class="logo-footer." href="#"
><p><span class="span-logo">Web</span>Studio</p></a
>
</div>
<address class="footer-section__adress">
695 Park Ave, NY 10065, USA
</address>
<ul class="footer-section__contacts">
<li>
<a class="footer-section__contact" href="mailto:[email protected]"
>
</li>
<li>
<a class="footer-section__contact" href="tel:++1212-772-4150"
>+1 212-772-4150</a
>
</li>
</ul>
</footer>
</body>
</html>