-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
63 lines (55 loc) · 2.07 KB
/
404.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
60
61
62
63
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base target="_top">
<title>404 Not Found</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="claspIgnore.js"></script>
</head>
<body>
<nav class="navbar bg-dark border-bottom border-bottom-dark" data-bs-theme="dark">
<div class="container-fluid">
<span class="navbar-brand mb-0 h1" id="serviceTitle">Data Search</span>
</div>
</nav>
<div class="container text-center">
<div class="pt-5 messageTitle">
404
</div>
<div class="messageSubTitle">
- NOT FOUND -
</div>
<div class="pt-3 messageText">
このページは存在しません!
</div>
<a href="" id="backTopPage">
<button type="button" class="btn btn-outline-primary mt-4 backButton">トップページにもどる</button>
</a>
</div>
<style>
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&family=Zen+Maru+Gothic&display=swap');
.messageTitle {
font-family: 'Dosis', sans-serif;
font-size: clamp(100px, 20vw, 160px);
}
.messageSubTitle {
font-family: 'Dosis', sans-serif;
font-size: clamp(25px, 5vw, 40px);
}
.messageText {
font-family: 'Zen Maru Gothic', sans-serif;
font-size: clamp(20px, 4vw, 32px);
}
.backButton {
font-family: 'Zen Maru Gothic', sans-serif;
font-size: clamp(20px, 4vw, 32px);
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>