Skip to content

Commit 25e984d

Browse files
Update index.html
1 parent 5666fc9 commit 25e984d

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
lines changed

index.html

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,26 @@
1-
<html>
2-
<head>
3-
<title>
4-
thing
5-
</title>
6-
<link rel="stylesheet" href="style.css">
7-
</head>
8-
<body>
9-
<h1>Hello, World!</h1>
10-
<p>This is some body text</p>
11-
<h2>My Projects</h2>
12-
<a href="https://redisnotbluedev.github.io/gdchat">GDChat</a>
13-
</body>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>My Website</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<!-- Topbar -->
11+
<div class="topbar">
12+
<h1>My Website</h1>
13+
<button id="theme-toggle">Toggle Dark Mode</button>
14+
</div>
15+
16+
<!-- Main content -->
17+
<div class="container">
18+
<h2>Welcome!</h2>
19+
<p>This is some body text.</p>
20+
<h2>My Projects</h2>
21+
<a href="https://redisnotbluedev.github.io/gdchat">GDChat</a>
22+
</div>
23+
24+
<script src="script.js"></script>
25+
</body>
1426
</html>

0 commit comments

Comments
 (0)