forked from toyprj-3/test_1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
88 lines (83 loc) · 3.1 KB
/
main.html
File metadata and controls
88 lines (83 loc) · 3.1 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
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>지켜줄개</title>
<link rel="stylesheet" href="./toyproject_1/static/css/main.css" />
<script
src="https://kit.fontawesome.com/ca7a2d019a.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="nonfooter">
<header>
<a href="./main.html"
><img
src="./toyproject_1/static/images/logo.png"
alt="logo"
/></a>
</header>
<nav>
<a href="./login.html"
><div><i class="fa-solid fa-paw"></i> 로그인</div></a
>
<a href="./main.html"
><div><i class="fa-solid fa-paw"></i> 로그아웃</div></a
>
<a href="./join.html"
><div><i class="fa-solid fa-paw"></i> 회원가입</div></a
>
<a href="./create.html"
><div><i class="fa-solid fa-paw"></i> 글쓰기</div></a
>
</nav>
<div class="container">
<div class="item">
<a href="./More.html"><h1>글 제목</h1></a>
<br />
<h5 class="item-info">작성자 | 작성일</h5>
<span class="likes"
>좋아요 <i class="fa-regular fa-heart"></i
></span>
</div>
<div class="item">
<a href="./More.html"><h1>글 제목</h1></a>
<br />
<h5 class="item-info">작성자 | 작성일</h5>
<span class="likes"
>좋아요 <i class="fa-regular fa-heart"></i
></span>
</div>
<div class="item">
<a href="./More.html"><h1>글 제목</h1></a>
<br />
<h5 class="item-info">작성자 | 작성일</h5>
<span class="likes"
>좋아요 <i class="fa-regular fa-heart"></i
></span>
</div>
<div class="item">
<a href="./More.html"><h1>글 제목</h1></a>
<br />
<h5 class="item-info">작성자 | 작성일</h5>
<span class="likes"
>좋아요 <i class="fa-regular fa-heart"></i
></span>
</div>
</div>
</div>
<footer>
<p class="footer">© 2023. 지켜줄개 ALL RIGHTS RESERVED.</p>
</footer>
</body>
<script>
window.onload = () => {
const like = document.querySelector(".fa-regular");
like.addEventListener("click", (e) => {
e.target.classList.toggle("fa-solid");
});
};
</script>
</html>