-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (110 loc) · 3.64 KB
/
index.html
File metadata and controls
125 lines (110 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page - GitHub Pages</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 2rem;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #fff, #f0f0f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
line-height: 1.6;
}
.status {
display: inline-block;
padding: 0.5rem 1.5rem;
background: rgba(76, 175, 80, 0.8);
border-radius: 25px;
font-weight: bold;
margin-bottom: 1rem;
}
.info {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 10px;
margin-top: 2rem;
border-left: 4px solid #4CAF50;
}
.timestamp {
font-size: 0.9rem;
opacity: 0.7;
margin-top: 1rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
.container {
margin: 1rem;
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="status">✅ GitHub Pages Active</div>
<h1>Test Page</h1>
<p>Congratulations! Your GitHub Pages site is working perfectly.</p>
<div class="info">
<h3>🚀 What's Next?</h3>
<p>This is your test page. You can now:</p>
<ul style="text-align: left; margin-top: 1rem; opacity: 0.9;">
<li>Replace this with your actual website content</li>
<li>Add more pages and navigation</li>
<li>Customize the styling and layout</li>
<li>Add JavaScript functionality</li>
</ul>
</div>
<div class="timestamp">
Page deployed: <span id="timestamp"></span>
</div>
</div>
<script>
// Display current timestamp
document.getElementById('timestamp').textContent = new Date().toLocaleString();
// Add some interactive elements
document.querySelector('.container').addEventListener('click', function() {
this.style.transform = this.style.transform === 'scale(1.02)' ? 'scale(1)' : 'scale(1.02)';
this.style.transition = 'transform 0.3s ease';
});
</script>
</body>
</html>