-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
69 lines (64 loc) · 1.86 KB
/
main.html
File metadata and controls
69 lines (64 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/kit_code.js"
crossorigin="anonymous"
></script>
<title>Nav Bar</title>
</head>
<body>
<nav class="navbar">
<div class="navbar__logo">
<i class="fas fa-blog"></i>
<a href="">처음으로</a>
</div>
<ul class="navbar__menu">
<li><a href="#">11111</a></li>
<li><a href="#">22222</a></li>
<li><a href="#">33333</a></li>
<li><a href="#">44444</a></li>
<li><a href="#">FAQ</a></li>
</ul>
<ul class="navbar__icons">
<li><i class="fab fa-google"></i></li>
<li><i class="fab fa-slack"></i></li>
</ul>
<a href="#" class="navbar__toggleBtn">
<i class="fas fa-hamburger"></i>
</a>
</nav>
<!-- 아래부터는 이미지 -->
<div class="hero-image">
<div class="mask">
<div class="main-text">
<div class="text-white">
<h3 class="mb-3">초기 수리력 개별화 지도 자료</h3>
<h1 class="mb-4">수북이</h1>
<button
type="button"
id="start-button"
class="btn btn-outline-light btn-xl"
>
수북이WED 시작
</button>
<button
type="button"
id="pdf-button"
class="btn btn-outline-light btn-xl"
>
PDF파일 다운로드
</button>
</div>
</div>
</div>
</div>
<footer>
<p>copyright 세종특별자치시교육청. All rights reserved.</p>
</footer>
</body>
</html>