-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
43 lines (43 loc) · 1.12 KB
/
main.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="main.css" />
<title>전남대모음이</title>
</head>
<body>
<header>
<div class="header">
<div class="logo">
<a href="main.html"><img src="h_logo.png" alt="h_logo" /></a>
</div>
<nav class="menu">
<div>
<button
class="head_btn_like"
id="head_like"
onclick="location.href='like.html'"
>
추 천
</button>
</div>
<div>
<button
class="head_btn"
id="head_my"
onclick="location.href='my.html'"
>
마이페이지
</button>
</div>
<div>
<button class="head_btn" id="head_log">로그인</button>
</div>
</nav>
</div>
</header>
<script type="module" src="main.js"></script>
</body>
</html>