-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-page.html
More file actions
53 lines (53 loc) · 1.47 KB
/
test-page.html
File metadata and controls
53 lines (53 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
max-width: 860px;
margin: 40px auto;
padding: 0 20px;
color: #1a1a1a;
background: #fff;
line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
body { background: #1a1a1a; color: #e8e8e8; }
table { border-color: #444; }
th { background: #2a2a2a; }
}
h1 { font-size: 1.6rem; margin-bottom: 0.3em; }
.meta { color: #888; font-size: 0.85rem; margin-bottom: 2em; }
table { border-collapse: collapse; width: 100%; margin: 1.5em 0; }
th, td { padding: 10px 14px; text-align: left; border: 1px solid #e0e0e0; }
th { background: #f5f5f5; font-weight: 600; }
tr:nth-child(even) td { background: #fafafa; }
.status-pass { color: #22c55e; font-weight: 600; }
</style>
</head>
<body>
<h1>✓ Test Page</h1>
<p class="meta">Published via pages-publish</p>
<table>
<tr>
<th>Item</th>
<th>Status</th>
</tr>
<tr>
<td>GitHub Pages Deployment</td>
<td class="status-pass">✓ Active</td>
</tr>
<tr>
<td>HTML Rendering</td>
<td class="status-pass">✓ Working</td>
</tr>
<tr>
<td>Link Format</td>
<td class="status-pass">✓ bot-pages</td>
</tr>
</table>
</body>
</html>