-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (46 loc) · 1.67 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
<!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>Lasya Vanga's Website</title>
<link rel="stylesheet" href="/css/styles-new.css" />
<link rel="stylesheet" href="/css/styles.light.css" />
<link rel="stylesheet" href="/css/styles.dark.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="page">
<div id="left">
<div id="logo">
<h1>Lasya Vanga</h1>
<p><a href="https://lasya.net">https://lasya.net</a></p>
</div>
<div id="links">
<ul class="nav" id="nav-links"></ul>
<p><button id="switch-theme">Switch Theme</button></p>
</div>
</div>
<div id="right">
<div id="page-title">
<h2>Home</h2>
</div>
<div id="page-content">
<p>Welcome to My Website!!</p>
</div>
</div>
</div>
<script src="/js/nav.js?v=0"></script>
<script src="/js/theme.js"></script>
</body>
</html>