-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
49 lines (47 loc) · 1.34 KB
/
about.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://fonts.googleapis.com/css?family=Comfortaa"
rel="stylesheet"
/>
<style>
body {
font-family: "Comfortaa";
font-size: 22px;
}
li {
list-style: none;
}
img {
width: 20%;
height: auto;
border-radius: 50%;
}
.main {
margin-left: 200px;
margin-right: 200px;
}
@media only screen and (max-width: 768px) {
.main {
margin-left: 10px;
margin-right: 10px;
}
}
</style>
</head>
<body>
<center><img src="./my-profile-pic.jpg" alt=""></center>
<div class="main">
<h2>Hi 👋, This is Nitin (solitary_crow)</h2>
<h3>
I am a low-level software developer working mostly on systems, compilers, and
computational tools.
</h3>
<h2>Recent Works and Projects</h2>
</div>
</body>
</html>