-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.html
91 lines (81 loc) · 3.69 KB
/
403.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="jp">
<head>
<meta charset="utf-8">
<title>404 Not Found!</title>
<link rel="stylesheet" href="/assets/styles/footercss.css">
<link rel="stylesheet" href="/assets/styles/404_403.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--Header-->
<header class="header">
<div class="header__inner">
<h1 class="header__title header-title">
<a href=""><img src="https://www.pescadogames.com/assets/icons/PGBlueLogo-toumei.png"></a>
</h1>
<nav class="header__nav nav" id="js-nav">
<ul class="nav__items nav-items">
<li class="nav-items__item"><a href="https://www.pescadogames.com/">ホーム</a></li>
<li class="nav-items__item"><a href="https://www.pescadogames.com/about.html">概要</a></li>
<li class="nav-items__item"><a href="https://www.pescadogames.com/services.html">製品・サービス</a></li>
<li class="nav-items__item"><a href="https://www.pescadogames.com/news.html">お知らせ</a></li>
<li class="nav-items__item"><a href="https://www.pescadogames.com/contact.html">お問い合わせ</a></li>
</ul>
</nav>
<button class="header__hamburger hamburger" id="js-hamburger">
<span></span>
<span></span>
<span></span>
</button>
</div>
</header>
<div class="container">
<h1>403</h1>
<h2>ちょっと君!IDを見せなさい!ピッ!<br>ちょっと警備員!ここに不法侵入者がいるぞ!つまみ出せ!</h2>
<p>あなたには、このページにアクセスできるレベルの権限を持っていません。<br>もしこれがおかしいと思う場合は、PescadoGamesへお問い合わせください。</p>
<a onclick="history.back()">前のページに戻る</a>
</div>
<div id="footer">
<footer id="copyrightandsns">
<div class="socialnetworkbutton">
<a href="https://twitter.com/PescadoGames" id="twitterlogobutton"><img
src="/assets/image/twitterlogowhite.png"></a>
<a href="https://www.youtube.com/@PescadoGames" id="youtubelogobutton"><img
src="/assets/image/yt_icon_mono_dark.png"></a>
</div>
</footer>
<footer id="URL">
<ul class="footer-linksmall">
<li class="linktitle"><span>SiteMap</span></li>
<li><a href="https://www.pescadogames.com/">ホーム</a></li>
<li><a href="https://www.pescadogames.com/about">概要</a></li>
<li><a href="https://www.pescadogames.com/services"><span>製品・サービス</span></a></li>
<li><a href="https://www.pescadogames.com/news">お知らせ</a></li>
</ul>
<ul class="footer-link">
<li class="linktitle"><span>SNS/Contact</span></li>
<li><a href="https://discord.gg/9HC3wWQSTV"><span>Discord</span></a></li>
<li><a href="https://www.pescadogames.com/contact">お問い合わせ</a></li>
</ul>
</footer>
<footer id="borderfooter">
<div class="border"></div>
</footer>
<footer id="copyright">
<span>©PescadoGames All rights reserved.</span>
</footer>
</div>
<!--▽▽jQuery▽▽-->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script>
const ham = $('#js-hamburger');
const nav = $('#js-nav');
ham.on('click', function () { //ハンバーガーメニューをクリックしたら
ham.toggleClass('active'); // ハンバーガーメニューにactiveクラスを付け外し
nav.toggleClass('active'); // ナビゲーションメニューにactiveクラスを付け外し
});
</script>
</body>
</html>