-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 899 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 899 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="public, max-age=31536000">
<title>My Website</title>
<style>
/* Your existing styles here, minified */
</style>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<a href="#home" onclick="navigate('home')">Home</a>
<a href="#about" onclick="navigate('about')">About</a>
<a href="#contact" onclick="navigate('contact')">Contact</a>
</nav>
</header>
<main id="content">
<!-- Content will be loaded here -->
</main>
<script>
// Your existing script here, minified
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/minify/5.2.0/minify.min.js"></script>
</body>
</html>