-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (110 loc) · 3.32 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KQ79PSQ');</script>
<!-- End Google Tag Manager -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<title>Jovana Andjelkovic</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px
background-color: #FFFEFC;
}
.container {
text-align: left;
font-family: 'Barlow', sans-serif;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
grid-column: 1 / -1;
align-items: center;
height: 100vh;
}
.mainwrap {
padding-left: 10%;
width: 50%;
}
h1 {
font-weight: 400;
font-size: 36px;
line-height: 44px;
}
h2 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
p {
font-weight: 400;
font-size: 12px;
line-height: 16px;
}
span {
font-weight: 600;
}
a {
color: #4386E5;
text-decoration: none;
}
a:hover {
opacity: 0.5;
}
a:active,a:visited {
color: #3375D4;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-49PHSWWRBP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-49PHSWWRBP');
</script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQ79PSQ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container">
<div class="mainwrap">
<h1>
I help <span>software companies</span> define the <span>scope of their products</span>, fine tune <span>product features</span>, plan out <span>phases of delivery</span>, and ultimately – <span>deliver</span>.
</h1>
<h2>
I'm <span>Jovana Andjelkovic</span>, currently working as <span>Product Designer</span> @ <a href="https://getyourguide.com" target="_blank">GetYourGuide</a>.
</h2>
<p>
<a href="https://www.linkedin.com/in/casualmess/" target="_blank">linkedin</a>
<a href="https://dribbble.com/casualmess" target="_blank">dribbble</a>
</p>
<br />
</div>
</div>
<style type="text/css">
@media only screen and (max-width: 768px) {
.mainwrap {
padding-top: 5%;
padding-left: 5%;
width: 90%;
}
}
@media only screen and (max-width: 1024px) {
.mainwrap {
padding-left: 10%;
width: 80%;
}
}
</style>
</body>
</html>