-
Notifications
You must be signed in to change notification settings - Fork 2
/
typing.html
40 lines (38 loc) · 1.25 KB
/
typing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/typing.css" />
<link rel="stylesheet" href="./css/common.css" />
<title>타이핑 화면</title>
<script src="./js/typing.js"></script>
</head>
<body>
<div class="content">
<div class="title">
<h2 style="font-size: 24px">타이핑</h2>
</div>
<div class="button">
<input type="button" value="초기화" onclick="clearInputText();" />
</div>
</div>
<div class="input">
<p><textarea id="textInput" placeholder="입력해주세요."></textarea></p>
</div>
<div class="widget">
<a class="image-button" href="home.html"
><img src="images/home.png" alt="이미지 1"
/></a>
<a class="image-button" href="category(concept).html"
><img src="images/개념.png" alt="이미지 2"
/></a>
<a class="image-button" href="category(quiz).html"
><img src="images/퀴즈.png" alt="이미지 3"
/></a>
<a class="image-button" href="category(wronganswer).html"
><img src="images/오답.png" alt="이미지 4"
/></a>
</div>
</body>
</html>