forked from progedu/assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassessment.html
22 lines (22 loc) · 1.1 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assessment.css">
<title>ウェブアンケート いいところ診断 バージョン変えてみた</title>
</head>
<body>
<h1>あなたのいいところは</h1>
<p>診断したい名前を入れて</p>
<input type="text" id = "user-name" size="40" maxlength="20">
<!-- input タグは、入力欄を作るためのタグです。-->
<button id="assessment">診断する</button>
<!-- button タグは、ボタンを作るためのタグです。-->
<div id="result-area"></div>
<div id="tweet-area">
<a href="https://twitter.com/intent/tweet?button_hashtag=あなたのいいところ&ref_src=twsrc%5Etfw" class="twitter-hashtag-button" data-text="診断結果の文章" data-show-count="false">Tweet #あなたのいいところ</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<script src="assessment.js"></script>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>