-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspa.html
30 lines (29 loc) · 793 Bytes
/
spa.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Single Page Application</title>
<style>
nav a {
margin: 0 10px;
text-decoration: none;
color: blue;
}
.active {
font-weight: bold;
}
</style>
</head>
<body>
<nav>
<a href="#home" id="home-link">Home</a>
<a href="#about" id="about-link">About</a>
<a href="#contact" id="contact-link">Contact</a>
</nav>
<div id="content">
<!-- Nội dung sẽ được thay đổi ở đây -->
</div>
<script src="app.js"></script>
</body>
</html>