forked from progedu/assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassessment.html
45 lines (33 loc) · 1.03 KB
/
assessment.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
43
44
45
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>あなたのいいところ診断</title>
<link rel="stylesheet" href="assessment.css">
</head>
<body>
<header>
<h1>あなたの<span>いいところ</span>診断します</h1>
</header>
<div class="main">
<div class="main-logo">
<p>診断したい名前を入れてください</p>
</div>
<div class="main-input">
<input type="text" id="user-name" size="40" maxlength="20">
<div class="button">
<button id="assessment">診断する</button>
</div>
</div>
<div class="result">
<div class="resutl-log">
<div id="result-area"></div>
<div id="tweet-area">
</div>
</div>
</div>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<script src="assessment.js"></script>
</body>
</html>