-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
203 lines (150 loc) · 5.52 KB
/
index.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="assets/css/styles.css" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Inknut+Antiqua:wght@300;400;700&display=swap"
rel="stylesheet">
</head>
<body>
<nav>
<ul class="navigation">
<li><a href="#contact">contact</a></li>
<li><a href="#works">works</a></li>
<li><a href="#experience">experience</a></li>
<li class="empty"></li>
<li><a href="#">behance</a></li>
<li><a href="#">twitter</a></li>
<li><a href="#">linkedin</a></li>
</ul>
</nav>
<section class="head">
<div class="container">
<header class="info" id="experience">
<h1>hi, i’m <br>
jane doe</h1>
<ul>
<li>_Graphic & UX designer</li>
<li>_Graduated from Artistic University in Amsterdam</li>
<li>_8+ years of experience</li>
<li>_Collaborating with many successful startups and companies</li>
<li>_Speaking at various conferences for designers</li>
</ul>
<a href="#" class="button">add me on linkedin</a>
</header>
<div class="photo">
<figure>
<img src="assets/img/jane.jpg" alt="Jane Doe">
<figcaption>
Photo by Sam Manns on Unsplash
</figcaption>
</figure>
</div>
</div>
</section>
<main>
<section class="skills">
<div class="container">
<ul>
<li>01_graphic design</li>
<li>02_user experience</li>
<li>03_user interface design</li>
<li>04_design thinking</li>
<li>05_user research</li>
</ul>
</div>
</section>
<section class="project blue" id="works">
<!-- czy tu jest w ogóle sens wrzucać container jak i tak go wszędzie zeruję?... -->
<div class="container">
<div class="item">
<div class="photo align-right">
<!-- czy te fotki da się jakoś dopasować? Chyba tylko poprzez tło? -->
<!-- <div style="background-image: url(img/cosmetics.jpg)"></div> -->
<figure>
<img src="assets/img/cosmetics.jpg" alt="Cosmetics">
<figcaption>
Photo by José Alejandro Cuffia on Unsplash
</figcaption>
</figure>
</div>
<div class="text">
<h2>branding strategy <br>
for female cosmetics</h2>
<p>
Lorem ipsum dolor amet sartorial quinoa 3 wolf moon, tilde neutra succulents vegan kitsch church-key
vaporware. Pork belly thundercats iPhone tilde 90’s ugh. Narwhal post-ironic VHS affogato subway tile.
Everyday carry copper mug art party, blue bottle normcore banh mi gastropub lomo fingerstache four dollar
toast single-origin coffee hell of 3 wolf moon palo santo kinfolk.
</p>
<a href="#" class="button white">read more</a>
</div>
</div>
</div>
</section>
<section class="project reverse">
<div class="container">
<div class="item">
<div class="text align-right">
<h2>user experience design<br>
for dashboard app</h2>
<p>
Lorem ipsum dolor amet sartorial quinoa 3 wolf moon, tilde neutra succulents vegan kitsch church-key
vaporware. Pork belly thundercats iPhone tilde 90’s ugh. Narwhal post-ironic VHS affogato subway tile.
Everyday carry copper mug art party, blue bottle normcore banh mi gastropub lomo fingerstache four dollar
toast single-origin coffee hell of 3 wolf moon palo santo kinfolk.
</p>
<a href="#" class="button">read more</a>
</div>
<div class="photo">
<figure>
<img src="assets/img/dashboard-app.jpg" alt="Dashboard">
<figcaption>
Photo by José Alejandro Cuffia on Unsplash
</figcaption>
</figure>
</div>
</div>
</div>
</section>
<section class="project blue">
<div class="container">
<div class="item">
<div class="photo align-right">
<figure>
<img src="assets/img/ipad-app.jpg" alt="IPad-app">
<figcaption>
Photo by Marek Levák on Unsplash
</figcaption>
</figure>
</div>
<div class="text">
<h2>iPad app<br>
for the artists</h2>
<p>
Lorem ipsum dolor amet sartorial quinoa 3 wolf moon, tilde neutra succulents vegan kitsch church-key
vaporware. Pork belly thundercats iPhone tilde 90’s ugh. Narwhal post-ironic VHS affogato subway tile.
Everyday carry copper mug art party, blue bottle normcore banh mi gastropub lomo fingerstache four
dollar toast single-origin coffee hell of 3 wolf moon palo santo kinfolk.
</p>
<a href="#" class="button white">read more</a>
</div>
</div>
</div>
</section>
</main>
<footer id="contact">
<div class="container">
<h2>any questions? <br>
find me here jane@jane.jane</h2>
<p>
designed & developed by jane doe 2019
</p>
</div>
</footer>
</body>
</html>