-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (118 loc) · 3.08 KB
/
index.html
File metadata and controls
138 lines (118 loc) · 3.08 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
}
header {
background-color: #2c3e50;
color: white;
padding: 2rem 0;
text-align: center;
}
nav {
background-color: #34495e;
padding: 1rem 0;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 2rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
}
nav a:hover {
color: #3498db;
}
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.hero {
text-align: center;
margin-bottom: 3rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
color: #666;
max-width: 600px;
margin: 0 auto;
}
.content-section {
margin-bottom: 3rem;
}
.content-section h2 {
color: #2c3e50;
margin-bottom: 1rem;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 2rem 0;
margin-top: 3rem;
}
@media (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.hero h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome to Xeeban.com</h1>
<p>Here I explore things like knowledge gardens and Now pages</p>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="https://github.com/xeeban">Now Page</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section class="hero">
<h1>This is where I might put my vision or purpose</h1>
<p>And talk about it in more detail here...</p>
</section>
<section class="content-section">
<h2>About Me</h2>
<p>Some text about me goes here....</p>
</section>
<section class="content-section">
<h2>Some other content</h2>
<p>This is for other content.</p>
</section>
</main>
<footer>
<p>© 2025, Xeeban. All rights reserved.</p>
</footer>
</body>
</html>