-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<!--
This is the page head - it contains info the browser uses
Like the title, which appears on the browser tab but not inside the page
Further down you'll see the content that displays in the page
-->
<title>Welcome to my Parlor</title>
<!-- The website stylesheet -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="stylesheet" href="/style.css" />
<!-- The website JavaScript file -->
<script type="module" src="/script.js" defer></script>
</head>
<body>
<div id="fullpage">
<canvas id="background"></canvas>
<menu id="site-menu">
</menu>
<div id = "infobox">
<h1>Hi!</h1>
<div id="reroll">
<button id="theme-toggle">
<i class="fas fa-redo"></i>
</button>
</div>
<p> I am Kartik Mudgal.</p>
<p>I dabble in web dev, am good with databases, and am currently writing my master's thesis</p>
<p>It has a bunch of stuff, including data analyis, and image segmentation. <a href="#">Technical details</a></p>
<div class = "socials">
<ul>
<li><a href="http://linkedin.com/in/kartikmudgal"><span>LinkedIn</span></a></li>
<li><a href="https://github.com/Sprinting"><span>Github</span></a></li>
<li><a href="/assets/resume.pdf" target="_blank"><span>Resume</span></a></li>
<li><a href="mailto:[email protected]"><span>kartik1807 at gmail dot com</span></a></li>
</ul>
</div>
</div>
</div>
</body>
</html>