-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (71 loc) · 2.59 KB
/
index.html
File metadata and controls
75 lines (71 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>horror movie</title>
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<script type="module" src="./js/main.js"></script>
</head>
<body>
<div class="header">
<a href="./index.html">
<h1 class="title">
Help the Pro9rammers!
<span class="drop"></span>
<span class="drop"></span>
<span class="drop"></span>
<span class="drop"></span>
</h1>
</a>
</div>
<!-- 배경 음악 관련 -->
<div>
<audio id="bgm" src="./img/bgm.mp3" autoplay loop volume="0.1" type="audio/mp3"></audio>
<button id="bgmBtn">BGM</button>
<button id="muteBtn">MUTE</button><br />
<input type="range" id="volume-control" min="1" max="10" value="2" />
</div>
<!-- 배경 음악 끝 -->
<!-- 모달 관련 -->
<div class="modal" id="modal">
<div class="modalContent">
<span class="close">×</span>
<p id="modalText"></p>
<button onclick="location.href='review.html'" class="modalButton">more...</button>
</div>
</div>
<!-- 모달 관련 여기까지 -->
<div class="movie_search">
<input type="search" class="search_input" placeholder="영화 제목 검색" style="font-size: 2vw;"autofocus />
<button class="search_button">제목 검색</button>
</div>
<div class="content"></div>
<footer>
<ul>
<li>
<a href="https://github.com/JJQKR/" target="_blank"><i class="fa-brands fa-github"></i> </a>
<p class="member_name">강연주</p>
</li>
<li>
<a href="https://github.com/LastDice" target="_blank"><i class="fa-brands fa-github"></i> </a>
<p class="member_name">고종원</p>
</li>
<li>
<a href="https://github.com/sangjun231" target="_blank"><i class="fa-brands fa-github"></i> </a>
<p class="member_name">신상준</p>
</li>
<li>
<a href="https://github.com/jonghoon7431" target="_blank"><i class="fa-brands fa-github"></i> </a>
<p class="member_name">이종훈</p>
</li>
<li>
<a href="https://github.com/MiMing-00" target="_blank"><i class="fa-brands fa-github"></i> </a>
<p class="member_name">최혜미</p>
</li>
</ul>
</footer>
<button class="top_button">top</button>
</body>
</html>