-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title>Vighnesh Nayak S</title>
<meta charset="UTF-8">
<meta name="keywords" content="Vighnesh Nayak S">
<meta name="author" content="Vighnesh Nayak S">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/site.webmanifest">
<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=Fira+Code:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="intro">
<h1 class="intro-1">Hi there, I'm Vighnesh a.k.a vi88i</h1>
<h1 class="intro-2">I like problem solving using computers</h1>
<h1 class="intro-3">Software Engineer</h1>
</div>
<div class="menu-grid">
<div class="menu-grid-item" onclick="loadAbout()">
<h2>About</h2>
</div>
<div class="menu-grid-item" onclick="loadBlog()">
<h2>Blog</h2>
</div>
</div>
<script>
function loadAbout() {
window.location.assign("/pages/about.html");
}
function loadBlog() {
window.location.assign("/blogs/index.html");
}
</script>
</body>
</html>