-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
<!-- Include the html2canvas library. This requires internet connection. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.5.0-beta4/html2canvas.min.js"></script>
</head>
<body>
<div id="certificate">
<span id="course"></span>
<span id="name"></span>
<span id="teacher"></span>
<img src="certificate.png" alt="Certificate">
</div>
<div id="input-div">
<input id="input-name" type="text" placeholder="이름을 입력하세요">
<br>
<input id="input-course" type="text" placeholder="과정명을 입력하세요" value="로블록스 점프 챌린지: 나만의 점프맵 만들기!" style="width:600px">
<br>
<input id="input-teacher" type="text" placeholder="교사 이름을 입력하세요" value="Conanssam">
<button id="update-button" onclick="updateName()">제출</button>
<button id="save-button" onclick="saveAsImage()">출력</button>
</div>
</body>
</html>