-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
91 lines (89 loc) · 2.33 KB
/
test.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<!-- BlockId Alpha -->
<script async src="https://pixel.vaticai.com/static/js/pixel.js"></script>
<script>
window.vaticaiTracker = window.vaticaiTracker || [];
window.vaticaiTracker.push({
siteIdentifier: '1ef1e71c-3970-64c9-a10a-f9481fbb3da5'
});
</script>
<!-- End BlockId Alpha -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Static Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
}
nav a {
color: #fff;
padding: 1rem;
text-decoration: none;
display: block;
}
nav a:hover {
background-color: #555;
}
main {
padding: 2rem;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Static Website</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="home">
<h2>Home</h2>
<p>This is the home section of the static website.</p>
</section>
<section id="about">
<h2>About</h2>
<p>This is the about section of the static website.</p>
</section>
<section id="services">
<h2>Services</h2>
<p>This is the services section of the static website.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>This is the contact section of the static website.</p>
</section>
</main>
<footer>
<p>© 2024 My Static Website</p>
</footer>
</body>
</html>