-
Notifications
You must be signed in to change notification settings - Fork 0
/
assessment.html
55 lines (51 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>あなたのいいところ診断</title>
<!-- <link rel="stylesheet" href="assessment.css"> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css">
</head>
<body>
<header>
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">あなたのいいところ診断</a>
</div>
</nav>
</header>
<div class="container pt-5">
<h1>あなたのいいところを診断します</h1>
<p>診断したい名前を入れて下さい</p>
<!-- <input type="text" id="user-name" size="40" maxlength="20" />
<button id="assessment">診断する</button> -->
<div class="input-group mb-3" style="max-width: 500px;">
<input type="text" class="form-control" id="user-name" size="40" maxlength="20" />
<button class="input-group-text" id="assessment">診断する</button>
</div>
<div id="result-area"></div>
<!-- <div id="tweet-area"></div> -->
<div id="tweet-area" class="mt-3"></div>
</div>
<!-- <h1>あなたのいいところは?</h1>
<p>診断したい名前を入れて下さい</p>
<input type="text" id="user-name" size="40" maxlength="20">
<button id="assessment">診断する</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>
</body>
</html>