-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (74 loc) · 2.08 KB
/
index.html
File metadata and controls
86 lines (74 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Om Godse's blog</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: auto;
max-width: 850px;
padding-left: 16px;
padding-right: 16px;
box-sizing: border-box;
font-family: "Source Sans Pro";
}
img {
width: 100%;
}
h1 a,
h3 a {
color: inherit;
text-decoration: none;
}
p,
li {
line-height: 1.5;
letter-spacing: 0.25px;
}
ul.nav-links {
padding: 0;
}
ul.nav-links li {
margin-bottom: 8px;
list-style-type: none;
}
ul.nav-links a {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>
<a href="/">
Om Godse
</a>
</h1>
<img src="Images/IITH-Looking-At-Main-Gate.jpg" alt="">
<p>
Hi, I’m an undergraduate student pursuing a double major in Mechanical Engineering and Physics at IIT
Hyderabad.
</p>
<nav>
<ul class="nav-links">
<li><a href="https://github.com/OmGodse">GitHub</a></li>
<li><a href="/Courses.html">Courses I’ve taken</a></li>
<li><a href="/Something-To-Think-About.html">Something to think about</a></li>
</ul>
</nav>
</header>
<!-- <main>
<section>
<h2>2023</h2>
<h3>
<a href="UI-Chronicles-Reducing-the-number-of-dialogs-in-Notally.html">
UI Chronicles – Reducing the number of dialogs in Notally
</a>
</h3>
</section>
</main> -->
</body>
</html>