-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.02 KB
/
index.html
File metadata and controls
68 lines (66 loc) · 2.02 KB
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
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<!--Code for Discord Embed-->
<meta content="Lighty" property="og:title">
<meta content="Hi! >^-^< Click on this embed for projects made by me!" property="og:description" />
<meta content="https://lightyyt.github.io" property="og:url" />
<meta content="https://lightyyt.github.io/res/me.jpg" property="og:image" />
<meta content="#FFA500" data-react-helmet="true" name="theme-color" />
<!--CSS Files-->
<link rel="stylesheet" href="/css/pfp.css">
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="/css/main.css">
<!--Main Code-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/js/main.js"></script>
<title>Lighty's Website</title>
</head>
<body>
<div class="header">
<span class="title">
Lighty's Website
</span>
<button id="hamburger" onclick="hamburger()">☰</button>
</div>
<div class="menu" id="menu">
<ul>
<li><button onclick="redir(0)">Home</button></li>
<!--<li>Downloads</li>
<li>Boykisser</li>-->
<li><button id="darkmode" onclick="toggleTheme()">Dark Mode</button></li>
<li><button onclick="intern('projects.html')">My Projects</button></li>
<li>
<button onclick="hamburger()">Exit</button>
</li>
</ul>
</div>
<br/>
<main> <!-- Main Content -->
<span class="left">
<img src="/res/me.jpg" class="lg_pfp"></img>
<div class="about-me">
<div>Lighty</div>
<div>he/him</div>
Furry / Kitsune
</div>
</span>
<div class="main-info">
Hello!<br/>
I'm Lighty!<br/>
Thanks for checking out my Website!<br/>
To view other pages, press the Hamburger menu (☰)!
</div>
</span>
</main>
<div class="links">
<div>Links:</div>
<div>
<img onclick="redir(1)" src="/res/youtube.png"></img>
<img onclick="redir(2)" src="/res/bluesky.png"></img>
<img onclick="redir(3)" src="/res/discord.png"></img>
</div>
</div>
</body>
</html>