-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassessment.html
42 lines (39 loc) · 1.63 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="twitter:card" content="summary">
<meta
property="og:url"
content="https://qunaud.github.io/assessment/assessment.html"
>
<meta property="og:title" content="あなたのいいところ診断">
<meta
property="og:description"
content="N予備校プログラミング入門コースで制作した、「あなたのいいところ診断」サイトです。"
>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>クナウドが作ったあなたのいいところ診断</title>
</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>