-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
51 lines (49 loc) · 1.5 KB
/
Copy pathexample.html
File metadata and controls
51 lines (49 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example Landing Page</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
min-height: 100vh;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.content {
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 10px;
backdrop-filter: blur(10px);
}
a {
color: #ffd700;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="content">
<h1>Example Landing Page</h1>
<p>This is an example HTML page that demonstrates how new pages appear in the directory listing.</p>
<p>To add your own page:</p>
<ol>
<li>Create a new HTML file (e.g., <code>my-page.html</code>)</li>
<li>Run <code>node generate-projects-list.js</code> to update the directory listing</li>
<li>Your new page will appear in the index.html directory browser!</li>
</ol>
<p><a href="./index.html">← Back to Directory Listing</a></p>
</div>
</body>
</html>