-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (137 loc) · 4.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width"/>
<title>Harsh Zalavadiya</title>
<meta name="robots" content="follow, index"/>
<meta content="Developer, Amateur Cook and Front-end at Strand." name="description"/>
<meta property="og:url" content="https://harsh.cloud/"/>
<link rel="canonical" href="https://harsh.cloud/"/>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="Harsh Zalavadiya"/>
<meta property="og:description" content="Developer, Amateur Cook and Front-end at Strand."/>
<meta property="og:title" content="Harsh Zalavadiya"/>
<meta property="og:image" content="https://harsh.cloud/assets/banner.jpg"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@zhnebula"/>
<meta name="twitter:title" content="Harsh Zalavadiya"/>
<meta name="twitter:description" content="Developer, Amateur Cook and Front-end at Strand."/>
<meta name="twitter:image" content="https://harsh.cloud/assets/banner.jpg"/>
<link href="/favicon.ico" rel="shortcut icon"/>
<link href="/assets/site.webmanifest" rel="manifest"/>
<link href="/assets/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180"/>
<link href="/assets/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/>
<link href="/assets/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/>
<link color="#2E3947" href="/assets/safari-pinned-tab.svg" rel="mask-icon"/>
<meta content="#ffffff" name="theme-color"/>
<meta content="#ffffff" name="msapplication-TileColor"/>
<meta content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" name="robots"/>
<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=Manrope:wght@400;700&display=swap"
rel="stylesheet"
/>
<style type="text/css">
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: "Manrope", sans-serif;
font-size: 1.4rem;
font-weight: 400;
line-height: 1.55em;
color: #e8eaed;
background: #0a0a0a
url('data:image/svg+xml;,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff"><pattern id="a" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(65)"><path d="M10 0v9h9v1h-9v9h-1v-9h-9v-1h9v-9" opacity=".03"/><path d="M0 19h19v-19h1v20h-20" opacity=".06"/></pattern><rect width="100%" height="100%" fill="transparent"/><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
}
a {
transition: 0.4s ease;
text-decoration: none;
color: inherit;
}
a:hover,
a:focus-within {
transition: 0.2s ease;
text-decoration: underline;
color: #2997ff;
outline: 0;
}
h1 {
font-size: 5.6rem;
font-weight: 700;
line-height: 1.1em;
margin: 0;
}
section {
display: flex;
flex-direction: column;
max-width: 950px;
height: 100%;
padding: 8vmin;
justify-content: space-between;
}
nav {
display: flex;
margin-top: 2vw;
gap: 2vw;
}
nav a {
font-weight: 400;
display: inline-block;
letter-spacing: 0.5px;
}
@media (max-width: 767px) {
h1 {
font-size: 2.6rem;
}
nav {
flex-direction: column;
gap: 1.8vw;
}
}
</style>
</head>
<body>
<section>
<header>
<h1>
<span>Harsh Zalavadiya</span>, developer, amateur cook & open
source at
<a
target="_blank"
rel="noopener noreferrer"
href="https://strandls.com"
>
Strand</a
>.
</h1>
</header>
<nav>
<a href="mailto:hi@harsh.cloud">Contact</a>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/harshzalavadiya"
>
GitHub
</a>
<a
target="_blank"
rel="noopener noreferrer"
href="https://twitter.com/zhnebula"
>
Twitter
</a>
</nav>
</section>
</body>
</html>