-
Notifications
You must be signed in to change notification settings - Fork 0
/
assessment.html
35 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html lang="ja">
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</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>
<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" class="mt-3"></div>
</div>
<script src="assessment.js"></script>
</body>
</html>