-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
111 lines (111 loc) · 5.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
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</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=Raleway:wght@800&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a class="logo link" href="./index.html">Web<span class="highlight-logo-header">Studio</span></a>
<ul class="list">
<li><a class="header-item link" href="./index.html">Studio</a></li>
<li><a class="header-item link" href="./portfolio.html">Portfolio</a></li>
<li><a class="header-item link" href="">Contacts</a></li>
</ul>
</nav>
<address class="address">
<ul class="list">
<li><a class="address-item link" href="mailto:[email protected]">[email protected]</a></li>
<li><a class="address-item link" href="tel:+110001111111">+11 (000) 111-11-11</a></li>
</ul>
</address>
</header>
<main>
<section>
<h1>Our projects</h1>
<ul class="btn-list list">
<li><button class="btn" type="button">All</button></li>
<li><button class="btn" type="button">Web Site</button></li>
<li><button class="btn" type="button">App</button></li>
<li><button class="btn" type="button">Design</button></li>
<li><button class="btn" type="button">Marketing</button></li>
</ul>
<ul class="list">
<li>
<a href="" class="link">
<img src="./images/img8.jpg" width="360" height="300" alt="Photo of interface banking app">
<h2 class="list-title">Banking App Interface Concept</h2>
<p class="list-text">App</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img9.jpg" width="360" height="300" alt="Photo of cashless payment">
<h2 class="list-title">Cashless Payment</h2>
<p class="list-text">Marketing</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img10.jpg" width="360" height="300" alt="Laptop and phone screen of meditation app">
<h2 class="list-title">Meditation App</h2>
<p class="list-text">App</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img11.jpg" width="360" height="300" alt="Photo of driver inside a car">
<h2 class="list-title">Taxi Service</h2>
<p class="list-text">Marketing</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img12.jpg" width="360" height="300" alt="Photo of phone wallpapers">
<h2 class="list-title">Screen Illustrations</h2>
<p class="list-text">Design</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img13.jpg" width="360" height="300" alt="Photo of smileing girl">
<h2 class="list-title">Online Courses</h2>
<p class="list-text">Marketing</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img14.jpg" width="360" height="300" alt="Photo of instagram reels">
<h2 class="list-title">Instagram Stories Concept</h2>
<p class="list-text">Design</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img15.jpg" width="360" height="300" alt="Photo of girl carrying bag with fruits">
<h2 class="list-title">Organic Food</h2>
<p class="list-text">Web Site</p>
</a>
</li>
<li>
<a href="" class="link">
<img src="./images/img16.jpg" width="360" height="300" alt="Photo of cup of coffe with milk ">
<h2 class="list-title">Fresh Coffee</h2>
<p class="list-text">Web Site</p>
</a>
</li>
</ul>
</section>
</main>
<footer class="footer">
<a class="logo link" href="./index.html">Web<span class="highlight-logo-footer">Studio</span></a>
<p class="footer-text">Increase the flow of customers and sales for your business with digital marketing & growth solutions.</p>
</footer>
</body>
</html>