-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 1.71 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 1.71 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CSS마스터</title>
<style>
body {
margin: 0;
padding: 0;
font-family: "Arial", sans-serif;
background: #f8f9fa;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
text-align: center;
margin: 50px 0 20px;
font-size: 2.5rem;
color: #333;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
max-width: 800px;
padding: 20px;
}
nav a {
text-decoration: none;
color: white;
background: #007bff;
padding: 10px 20px;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s ease, transform 0.2s;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
nav a:hover {
background: #0056b3;
transform: translateY(-2px);
}
</style>
</head>
<body>
<h1>CSS 마스터되기</h1>
<nav>
<a href="./3D%20Japanese%20cartoons/" target="_blank">일본영화 모음</a>
<a href="./3D%20Slider/" target="_blank">닌자와 용</a>
<a href="./filltextImage/" target="_blank">우리집 개</a>
<a href="./Modern%20Loading/" target="_blank">로딩 애니메이션</a>
<a href="./Animal%20slider" target="_blank">동물 소개 페이지</a>
<!-- 추가될 항목도 자연스럽게 줄바꿈되며 정렬됩니다 -->
</nav>
</body>
</html>