-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 810 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Hello UiJeong</title>
<style>
body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: #f0f4f8; }
.card { background: white; border-radius: 12px; padding: 40px 60px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; }
h1 { color: #2d3748; }
.count { font-size: 3rem; font-weight: bold; color: #4299e1; margin: 16px 0; }
.ip { color: #718096; font-size: 0.9rem; }
</style>
</head>
<body>
<div class="card">
<h1>Hello, World! 👋</h1>
<p>총 방문자 수</p>
<div class="count">{{.Count}}명</div>
<p class="ip">접속 IP: {{.IP}}</p>
<p class="ip">응답한 Pod: {{.PodName}}</p>
</div>
</body>
</html>