-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
151 lines (151 loc) · 4.91 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
<!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>Portfolio</title>
<link rel="stylesheet" href="./css/style.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=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav>
<a class="link" href="/"
><span class="web">Web</span><span class="studio">Studio</span></a
>
<ul class="nav">
<li><a class="link" href="/">Studio</a></li>
<li><a class="link" href="./portfolio.html">Portfolio</a></li>
<li><a class="link" href="">Contacts</a></li>
</ul>
</nav>
<ul class="contacts">
<li>
<a class="link" href="mailto:[email protected]"
>
</li>
<li>
<a class="link" href="tel:+110001111111">+11 (000) 111-11-11</a>
</li>
</ul>
</header>
<main>
<section>
<h1 class="filter">The filter</h1>
<ul class="filter-buttons">
<li class="fiter-buttons-size">
<button class="button2 all" type="button">All</button>
</li>
<li class="fiter-buttons-size">
<button class="button2 web-site" type="button">Web Site</button>
</li>
<li class="fiter-buttons-size">
<button class="button2 app" type="button">App</button>
</li>
<li class="fiter-buttons-size">
<button class="button2 design" type="button">Design</button>
</li>
<li class="fiter-buttons-size">
<button class="button2 marketing" type="button">Marketing</button>
</li>
</ul>
<ul class="all-topics-list">
<li>
<img
src="./images/board1.jpg"
alt="Board with app's interfaces"
width="360"
/>
<h2 class="header-of-topics">Banking App Interface Concept</h2>
<p class="topics-text">App</p>
</li>
<li>
<img
src="./images/qrcode.jpg"
alt="Text on the violet background"
width="360"
/>
<h2 class="header-of-topics">Cashless Payment</h2>
<p class="topics-text">Marketing</p>
</li>
<li>
<img src="./images/devices.jpg" alt="Mac's devices" width="360" />
<h2 class="header-of-topics">Meditaion App</h2>
<p class="topics-text">App</p>
</li>
<li>
<img
src="./images/car.jpg"
alt="Car, man is holdang a steering wheel"
width="360"
/>
<h2 class="header-of-topics">Taxi Service</h2>
<p class="topics-text">Marketing</p>
</li>
<li>
<img
src="./images/screen.jpg"
alt="The Moon illustration on the phone"
width="360"
/>
<h2 class="header-of-topics">Screen Illustrations</h2>
<p class="topics-text">Design</p>
</li>
<li>
<img
src="./images/girl.jpg"
alt="The girl is smilling and take a phone"
width="360"
/>
<h2 class="header-of-topics">Online Courses</h2>
<p class="topics-text">Marketing</p>
</li>
<li>
<img
src="./images/board.jpg"
alt="The artical at Instagram"
width="360"
/>
<h2 class="header-of-topics">Instagram Stories Concept</h2>
<p class="topics-text">Design</p>
</li>
<li>
<img
src="./images/oranges.jpg"
alt="Some fruits in the bag"
width="360"
/>
<h2 class="header-of-topics">Organic Food</h2>
<p class="topics-text">Web Site</p>
</li>
<li>
<img
src="./images/coffee.jpg"
alt="A cup of cappuccino"
width="360"
/>
<h2 class="header-of-topics">Fresh Coffee</h2>
<p class="topics-text">Web Site</p>
</li>
</ul>
</section>
</main>
<footer class="footer">
<a class="link" href="/"
><span class="web-footer">Web</span
><span class="studio-footer">Studio</span></a
>
<p class="footer-description">
Increase the flow of customers and sales for your business with digital
marketing & growth solutions.
</p>
</footer>
</body>
</html>