-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Things I whipped up...</title>
<link rel="stylesheet" href="./css/style.css" />
<!-- Add any additional CSS styles specific to this page -->
</head>
<body>
<header>
<h1>Sourabh Raj</h1>
<h2>sour-abh-raj.github.io/lucifer-dev</h2>
<nav>
<a href="https://sour-abh-raj.github.io/">Home</a>
<a href="https://sour-abh-raj.github.io/leetcode-stats.html"
>LeetCode Stats</a
>
<!-- Add more navigation links if necessary -->
</nav>
</header>
<main>
<h2>Things I whipped up...</h2>
<div id="body"></div>
</main>
<footer>
<div class="contact">
<span
>Have a feature request or want me to make something for you?</span
>
<a
href="mailto:[email protected]?subject=From%20Tratus"
target="_blank"
rel="noopener noreferrer"
class="mail"
>Contact me</a
>
</div>
<div class="tag">
<a
href="https://linktr.ee/lucifer9199"
target="_blank"
rel="noopener noreferrer"
>
<img
class="tag-img"
src="./assets/dark-tag-without-background.svg"
alt="tag"
style="width: 50px; height: 50px"
/>
</a>
</div>
</footer>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="./js/visualizer.js"></script>
</body>
</html>