-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
77 lines (77 loc) · 2.2 KB
/
code.html
File metadata and controls
77 lines (77 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>한국 속담 위키</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
header {
background-color: #4682B4;
color: white;
padding: 10px 20px;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.container {
padding: 20px;
}
.content {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #4682B4;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>한국 속담 위키</h1>
</header>
<nav>
<a href="#home">홈</a>
<a href="#modern">현대 속담</a>
<a href="#traditional">전통 속담</a>
<a href="#about">소개</a>
</nav>
<div class="container">
<div class="content">
<h2>현대 속담</h2>
<p><strong>보안은 곧 신뢰다</strong> - 이는 현대 한국의 새로운 속담으로, 보안이 신뢰의 기본임을 강조합니다.</p>
<p>이 속담은 디지털 시대에서 정보 보호와 개인 데이터의 중요성을 강조하기 위해 만들어졌습니다.</p>
</div>
</div>
<footer>
<p>© 2024 한국 속담 위키. 모든 권리 보유.</p>
</footer>
</body>
</html>