-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathsitemap.html
More file actions
206 lines (155 loc) · 3.17 KB
/
sitemap.html
File metadata and controls
206 lines (155 loc) · 3.17 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Website Sitemap</title>
<style>
:root{
--dark:#090dea;
--light:#3c83ee;
--bg:#f4f7ff;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Segoe UI",Arial,sans-serif;
}
body{
background:linear-gradient(135deg,var(--dark),var(--light));
min-height:100vh;
padding:40px 15px;
}
/* Container */
.container{
max-width:1100px;
margin:auto;
background:white;
border-radius:18px;
padding:35px;
box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
/* Header */
.header{
text-align:center;
margin-bottom:40px;
}
.header h1{
font-size:36px;
color:var(--dark);
}
.header p{
color:#555;
}
/* Section */
.section{
margin-bottom:40px;
}
.section-title{
font-size:24px;
color:var(--dark);
border-left:6px solid var(--light);
padding-left:12px;
margin-bottom:20px;
}
/* Grid */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}
/* Card */
.card{
background:var(--bg);
padding:20px;
border-radius:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}
.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
/* Links */
a{
text-decoration:none;
color:var(--dark);
font-weight:600;
display:block;
margin:6px 0;
}
a:hover{
color:var(--light);
}
/* Footer */
.footer{
text-align:center;
margin-top:30px;
font-size:14px;
color:#666;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Website Sitemap</h1>
<p>100 Days of Web Development – ECWoC 2026</p>
</div>
<!-- Main Pages -->
<div class="section">
<h2 class="section-title">🏠 Main Pages</h2>
<div class="grid">
<div class="card">
<a href="index.html">Home</a>
<a href="website/pages/projects.html">Projects</a>
<a href="website/pages/home.html">Landing Page</a>
<a href="website/pages/login.html">Login</a>
</div>
</div>
</div>
<!-- Feature Pages -->
<div class="section">
<h2 class="section-title">✨ Feature Pages</h2>
<div class="grid">
<div class="card">
<a href="masthead.html">Masthead</a>
<a href="certificate.html">Contributor Certificate</a>
<a href="accessibility-checker.html">Accessibility Checker</a>
<a href="404.html">404 Error Page</a>
</div>
</div>
</div>
<!-- Documentation -->
<div class="section">
<h2 class="section-title">📚 Documentation</h2>
<div class="grid">
<div class="card">
<a href="README.md">README</a>
<a href="CONTRIBUTING.md">Contributing Guide</a>
<a href="CODE_OF_CONDUCT.md">Code of Conduct</a>
<a href="SECURITY.md">Security Policy</a>
<a href="LICENSE">License</a>
</div>
</div>
</div>
<!-- Assets & Structure -->
<div class="section">
<h2 class="section-title">🗂️ Project Structure</h2>
<div class="grid">
<div class="card">
<a href="public/">Public Projects (150+)</a>
<a href="assets/">Assets</a>
<a href="components/">Components</a>
<a href="scripts/">Scripts</a>
<a href="data/">Data</a>
<a href="website/">Website Folder</a>
</div>
</div>
</div>
<div class="footer">
© 2026 • 100 Days of Web Development • ECWoC
</div>
</div>
</body>
</html>