-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.18 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel=stylesheet href="index.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cursedprograms.github.io/cursedentertainment/cursedFavicon.png" rel="icon"
type="image/x-icon" />
<title>Your Page Title</title>
</head>
<body>
<header>
<h1>Your Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Welcome to Our Website!</h2>
<p>This is the main content of your website. You can add more sections, text, images, and other
elements.</p>
</section>
<!-- Add more sections as needed -->
</main>
<footer>
<p>© 2024 Your Website. All rights reserved.</p>
</footer>
<!-- Add your scripts or other body elements here -->
<script src="script/script.js"></script>
</body>
</html>