-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 934 Bytes
/
index.html
File metadata and controls
36 lines (34 loc) · 934 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>내 깃허브 페이지</title>
<style>
/* 화면 중앙 정렬 및 기본 폰트 설정 */
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f2f5;
}
.content {
text-align: center;
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="content">
<h1>안녕하세요! 👋</h1>
<p>깃허브 페이지로 만들어진 사이트입니다.</p>
<hr>
<p>현재 페이지는 <strong>index.html</strong> 파일로 실행 중입니다.</p>
</div>
</body>
</html>