-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.95 KB
/
index.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
56
57
58
59
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="twitter:card" content="summary">
<meta
property="og:url"
content="https://progedu.github.io/expert_example/index.html"
>
<meta property="og:title" content="誕生日からわかる今年の運勢">
<meta
property="og:description"
content=""
>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>誕生日からわかる今年の運勢</title>
</head>
<body class="bg-light-subtle">
<header>
<nav class="navbar bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">誕生日からわかる今年の運勢</a>
</div>
</nav>
</header>
<div class="container-md mt-3">
<div class="row">
<h3 class="mt-3 mb-3 text-center">🔮占いたい人の名前と誕生日を入れてください🔮</h3>
<div class="mt-3 mb-3 form-group row">
<label for="name" class="form-label col-1">名前</label>
<div class="col-5">
<input type="text" class="form-control" id="name" size="20" maxlength="20" />
</div>
</div>
<div class="mt-3 mb-3 form-group row">
<label for="date" class="form-label col-1">誕生日</label>
<div class="col-5">
<input type="date" class="form-control" id="date" />
</div>
</div>
<div class="mt-3 mb-3 form-group row">
<div class="col-2">
<button class="btn btn-primary" id="submit" type="submit">占う</button>
</div>
</div>
</div>
<div class="row mt-3">
<div class="">
<div id="result-area"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>