-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·121 lines (105 loc) · 5.09 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
<!-- This portfolio was made via an online Skillshare class and was the original creation of Aga Naplocha. -->
<!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="css/styles.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Inknut+Antiqua&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li><a href="#contact">contact</a></li>
<li><a href="#projects">works</a></li>
<li>experience</li>
<li class="empty"></li>
<li>behance</li>
<li><a href="ttp:/twitter.com" target="_blank">twitter</a></li>
<li>linkedin</li>
</ul>
</nav>
<header>
<div class="col-sm">
<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>
</div>
<div class="col-sm">
<figure>
<img src="img/jane.jpg" alt="jane doe" class="intro-img">
<figcaption>Photo by Sam Manns on Unsplash</figcaption>
</figure>
</div>
</header>
<section>
<ul class="skills-list">
<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>
</section>
<!-- projects -->
<!-- project 1 -->
<section class="project blue" id="projects">
<div class="col-sm">
<figure>
<img src="img/cosmetics.jpg" alt="Cosmetics">
<figcaption>Photo by José Alejandro Cuffia on Unsplash</figcaption>
</figure>
</div>
<div class="col-sm">
<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">read more</a>
</div>
</section>
<!-- project 2 -->
<section class="project right-alignment">
<div class="col-sm">
<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="col-sm">
<figure>
<img src="img/dashboard-app.jpg" alt="Dashboard App">
<figcaption>Photo by José Alejandro Cuffia on Unsplash</figcaption>
</figure>
</div>
</section>
<!-- project 3 -->
<section class="project blue">
<div class="col-sm">
<figure>
<img src="img/ipad-app.jpg" alt="iPad App">
<figcaption>Photo by José Alejandro Cuffia on Unsplash</figcaption>
</figure>
</div>
<div class="col-sm">
<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">read more</a>
</div>
</section>
<footer id="contact">
<h2>any questions?<br/>find me here [email protected]</h2>
<p>designed & developed by jane doe 2019</p>
</footer>
</body>
</html>