-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
169 lines (169 loc) · 4.6 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Portfolio</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
</html>
<body>
<header class="topbarback">
<a class="logo" href="index.html">WebStudio</a>
<nav>
<ul class="lead">
<li>
<a class="topbar" href="index.html" title="Studio">Studio</a>
</li>
<li>
<a class="topbar" href="portfolio.html" title="Portfolio"
>Portfolio</a
>
</li>
<li>
<a class="topbar" href="#" title="Contacts">Contacts</a>
</li>
</ul>
</nav>
<ul class="lead">
<li>
<a class="rightbar" href="mailto:info@devstudio.com"
>info@devstudio.com</a
>
</li>
<li>
<a class="rightbar" href="tel:+12127724150">+1 212-772-4150</a>
</li>
</ul>
</header>
<main>
<section>
<ul class="lead">
<li>
<button class="filter" type="button">All</button>
</li>
<li>
<button class="filter" type="button">Web-Sites</button>
</li>
<li>
<button class="filter" type="button">Apps</button>
</li>
<li>
<button class="filter" type="button">Design</button>
</li>
<li>
<button class="filter" type="button">Marketing</button>
</li>
</ul>
</section>
<section>
<ul class="lead">
<li class="imgbox">
<img
src="assets/images/c1technoduck.jpg"
alt="laptop with profile pics"
height="294"
width="370"
/>
<h3 class="artname">Technoduck</h3>
<p class="artdesc">Web-site</p>
</li>
<li class="imgbox">
<img
src="assets/images/c2poster.jpg"
alt="Art of two basketball players"
height="294"
width="370"
/>
<h3 class="artname">Poster New Orleans vs Golden Star</h3>
<p class="artdesc">Design</p>
</li>
<li class="imgbox">
<img
src="assets/images/c3seafood.jpg"
alt="Fish Logo of a Seafood Restaurant"
height="294"
width="370"
/>
<h3 class="artname">Seafood Restaurant</h3>
<p class="artdesc">Apps</p>
</li>
<li class="imgbox">
<img
src="assets/images/d1project.jpg"
alt="Headphones"
height="294"
width="370"
/>
<h3 class="artname">Project Prime</h3>
<p class="artdesc">Marketing</p>
</li>
<li class="imgbox">
<img
src="assets/images/d2project.jpg"
alt="Boxes with customized Logos"
height="294"
width="370"
/>
<h3 class="artname">Project Boxes</h3>
<p class="artdesc">Apps</p>
</li>
<li class="imgbox">
<img
src="assets/images/d3inspiration.jpg"
alt="Computer Monitor featuring website"
height="294"
width="370"
/>
<h3 class="artname">Inspiration has no Borders</h3>
<p class="artdesc">Web-site</p>
</li>
<li class="imgbox">
<img
src="assets/images/e1limited.jpg"
alt="Magazine Entry"
height="294"
width="370"
/>
<h3 class="artname">Limited Edition</h3>
<p class="artdesc">Design</p>
</li>
<li class="imgbox">
<img
src="assets/images/e2project.jpg"
alt="Label Tag"
height="294"
width="370"
/>
<h3 class="artname">Project LAB</h3>
<p class="artdesc">Marketing</p>
</li>
<li class="imgbox">
<img
src="assets/images/e3growing.jpg"
alt="Laptop with hands typing"
height="294"
width="370"
/>
<h3 class="artname">Growing Business</h3>
<p class="artdesc">Apps</p>
</li>
</ul>
</section>
</main>
<footer class="promobody">
<address class="bottom">
<a class="logo" href="index.html">WebStudio</a>
<a
class="where"
href="https://goo.gl/maps/9Rd5TcPRFXRM2J766"
target="blank"
>
695 Park Ave, NY 10065, USA
</a>
<a class="digitalcontact" href="mailto:info@devstudio.com"
>info@devstudio.com
</a>
<a class="digitalcontact" href="tel:+1217724150"> +1 212-772-4150</a>
</address>
</footer>
</body>