-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 761 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World Peace</title>
<style>
body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f0f0f0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.content { text-align: center; padding: 20px; }
h1 { font-size: clamp(3rem, 10vw, 6rem); color: #333; margin: 0 0 20px 0; font-weight: bold; letter-spacing: 5px; }
p { font-size: clamp(1.5rem, 5vw, 2.5rem); color: #666; margin: 0; }
</style>
</head>
<body>
<div class="content">
<h1>世界人民大团结万岁</h1>
<p>Pray for World Peace</p>
</div>
</body>
</html>