forked from progedu/assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assessment.html
50 lines (47 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="twitter:card" content="summary">
<meta
property="og:url"
content="https://nyeoro-bong.github.io/assessment/assessment.html"
/>
<meta property="og:title" content="あなたのいいところ診断"/>
<meta
property="og:description"
content="N予備校 Web アプリケーション開発コースで制作した、「あなたのいいところ診断」サイトです。"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-fx038NkLY4U1TCrBDiu5FWPEa9eiZu01EiLryshJbCo=" crossorigin="anonymous">
<title>あなたのユーザー名が作ったあなたのいいところ診断</title>
</head>
<body class="bg-primary-subtle">
<header>
<nav class="navbar bg-primary" data-bs-theme="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="row">
<div class="col-sm-9 col-lg-6">
<div class="input-group mb-3">
<input type="text" class="form-contrl" id="user-name" size="40" maxlength="20">
<button class="btn btn-primary" id="assessment">診断する</button>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9">
<div id="result-area"></div>
</div>
</div>
<div id="tweet-area" class="mt-3"></div>
</div>
<script src="assessment.js"></script>
</body>
</html>