-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathend.html
More file actions
41 lines (40 loc) · 1.24 KB
/
end.html
File metadata and controls
41 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>시험지를 훔쳤다 - 엔딩 크레딧</title>
<link rel="stylesheet" href="./css/end.css" />
</head>
<body>
<audio controls autoplay loop hidden>
<source src="./sound/ending.mp3" type="audio/ogg" />
</audio>
<div class="container" id="app">
<div class="restart-container">
<div class="restart-button" @click="restart">
<img class="restart-img" src="./photo/icons/restart.svg" alt="restart icon" />
다시 하기
</div>
</div>
<div class="ending-credit-container">
<div class="ending-credit">
<p>제1회 코드스쿼드</p>
<p>프론트엔드 해커톤</p>
<p>2018년 12월 27일</p>
<p>.</p>
<p>.</p>
<p>.</p>
<p>윤</p>
<p>숨</p>
<p>헤드</p>
<p>새라</p>
<p>솔로몬</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
<script src="./js/common.js"></script>
</body>
</html>