-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.09 KB
/
index.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="imagetoolbar" content="no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Title" content="스핑크스 퀴즈"/>
<meta http-equiv="Author" content="윤준석"/>
<title>스핑크스 퀴즈</title>
<style>
.video-wrap {
position: relative;
padding-bottom: 56.25%;
height: 0px;
overflow: hidden;
}
.video-wrap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body style="overflow-x: hidden;">
<!-- 가로 스크롤을 막는 overflow-x 사용 -->
<div class="video-wrap">
<!-- iframe 1(main.html) -->
<iframe src="./main.html" id="main" style="width:1440px; height:1080px; border:none" title="main"></iframe>
</div>
<!-- iframe 2(bgm.html) -->
<iframe src="./bgm.html" id="bgm" style="width:1440px; height:95px; border:none" title="bgm"></iframe>
<!-- js 파일 불러오기 -->
<script src="./js/music.js"></script>
</body>
</html>