-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.29 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SalilPT's GitHub Website</title>
<!--Set the default URL for relative paths in the document-->
<base href="https://salilpt.github.io" target="_self">
<!--Set the CSS files for this document-->
<link rel="stylesheet" href="/css_files/navigation_ribbon.css">
<link rel="stylesheet" href="/css_files/basic-theme-1.css">
<link rel="stylesheet" href="/css_files/home-page.css">
<!--Set the JS files for this document-->
<script src="/js_files/home-page.js" defer></script>
</head>
<header>
<h1>Welcome to SalilPT's GitHub Website</h1>
</header>
<body>
<hr>
<!--Navigation Ribbon-->
<div id="navigation_ribbon" class="sticky_nav_ribbon">
<nav>
<a href="/my_works/works-listing.html">My Works</a>
<a href="about-and-contact.html">About / Contact</a>
</nav>
</div>
<div class="other_links">
<!--TODO: Create guides about how to do obscure things-->
<!--<a href="/obscure_guides/index.html">Obscure Guides</a>-->
<!--TODO(?): Create some tools/utilities that can work on a static website-->
<!--<a href="/tools/index.html"></a>-->
</div>
</body>
</html>