-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinfo.html
More file actions
49 lines (43 loc) · 1.36 KB
/
info.html
File metadata and controls
49 lines (43 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/info.css">
<link rel="stylesheet" href="css/nav.css">
<title>info</title>
</head>
<body>
<nav class="nav">
<a href="home.html">
<div class="icon-container">
<img src="/image/colorHome.png" alt="홈" class="icon-img">
<p>홈</p>
</div></a>
<a href="search.html">
<div class="icon-container">
<img src="/image/searchBarIcon.png" alt="검색" class="icon-img">
<p>검색</p>
</div>
</a>
<a href="test.html">
<div class="icon-container">
<img src="/image/testIcon.png" alt="테스트" class="icon-img">
<p>테스트</p>
</div>
</a>
<a href="mypage.html">
<div class="icon-container">
<img src="/image/mypageIcon.png" alt="마이페이지"class="icon-img">
<p>마이페이지</p>
</div>
</a>
</nav>
<main>
<!-- 동적으로 생성될 콘텐츠를 위한 공간 -->
</main>
<img src="image/Mini.png" alt="" id="bot">
<script src="/js/info.js"></script>
</body>
</html>