-
Notifications
You must be signed in to change notification settings - Fork 1
/
detail.html
53 lines (47 loc) · 2.01 KB
/
detail.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
44
45
46
47
48
49
50
51
52
53
<!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" />
<title>Movies Project</title>
<script src="./src/detail.js" type="module"></script>
<link rel="stylesheet" href="./style/reset.css" />
<link rel="stylesheet" href="./style/btn.css" />
<script src="./src/button.js" type="module"></script>
<script src="./src/review.js" type="module"></script>
<!-- 파비콘 넣기 -->
<link rel="shortcut icon" href="style/assets/favicon.ico" type="image/x-icon" />
<link rel="icon" href="style/assets/favicon.ico" type="image/x-icon" />
<!-- 폰트어썸 -->
<script src="https://kit.fontawesome.com/89a032c4e0.js" crossorigin="anonymous"></script>
<!-- CSS 파일 연결 -->
<link rel="stylesheet" href="style/review.css" />
<link rel="stylesheet" href="style/reset.css" />
<link rel="stylesheet" href="./style/detail.css" />
</head>
<body>
<div class="button">
<a href="/"><img class="logo" src="style/assets/icon.png" alt="" /></a>
<a href="/" class="title">Movies Project</a>
</div>
<main id="main"></main>
<div class="review-form">
<div class="review-form-data">
<textarea class="review-text" placeholder="내용을 입력해주세요"></textarea>
<div class="review-title">
<input type="text" class="nickname" placeholder="닉네임을 입력해주세요" />
<input type="password" class="password" placeholder="비밀번호 4자리" maxlength="4" />
<button class="review-btn">등록</button>
</div>
</div>
</div>
<div class="review-write">
<a href="" class="review-write-btn">영화 리뷰 작성하기 <i class="fa-sharp fa-regular fa-pen-to-square"></i></a>
</div>
<div class="review-list"></div>
<div class="arrow">
<i class="fa-solid fa-circle-arrow-up topBtn" id="topBtn"></i>
</div>
</body>
</html>