-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcredits.html
109 lines (96 loc) · 3.96 KB
/
credits.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>僕は壁サーになりたい。- 日大理工五味研究室 -</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ここにサイト説明を入れます">
<meta name="keywords" content="カードゲーム">
<link rel="stylesheet" href="css/logo.css">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/openclose.js"></script>
<link rel="icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png" sizes="180x180">
</head>
<body id="top">
<div id="container">
<header>
<h1 id="logo"><a href="index.html"><img src="images/logo.png" alt="TITLE IMAGE"></a></h1>
<!--PC用(801px以上端末)メニュー-->
<nav id="menubar">
<ul>
<li><a href="index.html">プロジェクトについて<span>ABOUT</span></a></li>
<li><a href="rule.html">遊び方<span>RULE</span></a></li>
<li><a href="cards.html">カードの種類<span>CARDS</span></a></li>
<li><a href="credits.html">ご支援者様<span>CREDITS</span></a></li>
</ul>
</nav>
</header>
<!--小さな端末用(800px以下端末)メニュー-->
<nav id="menubar-s">
<ul>
<li><a href="index.html">プロジェクトについて<span>ABOUT</span></a></li>
<li><a href="rule.html">遊び方<span>RULE</span></a></li>
<li><a href="cards.html">カードの種類<span>CARDS</span></a></li>
<li><a href="credits.html">ご支援者様<span>CREDITS</span></a></li>
</ul>
</nav>
<div id="contents">
<div id="main">
<section>
<img src="images/helperstitle.png" alt="">
<p>日本大学の学生が作るカードゲームプロジェクト「僕は壁サーになりたい。」へのご協力とご支援の程、ありがとうございます。ご協力者様とクレジット掲載を含むプランでご支援していただいた方のうち、掲載をご希望されたご支援者様のお名前を掲載させていただきます。</p>
<h3>作成ご協力者様</h3>
<p>■日大理工漫研C.L.B 様</p>
<br>
<h3>クラウドファンディングご支援者様</h3>
<p>■本多 伴世 様</p>
<p>■YAMADA Tomoki 様</p>
<p>■天野聖悦 様</p>
<p>■伴周一 様</p>
<p>■futa 様</p>
<p>■オリオーネ 様</p>
<p>※順不同で掲載させていただきました。</p>
<p>本ページに掲載したご支援者様以外にも、沢山の方からご支援をいただきました。心より感謝申し上げます。</p>
</section>
</div>
<!--/main-->
<div id="sub">
<nav class="box1">
<h2>Menu</h2>
<ul class="submenu">
<li><a href="crowdfounding.html">クラウドファンディング</a></li>
<li><a href="https://53lab.jp/">五味研究室サイトへ</a></li>
<li><a href="member.html">開発メンバー紹介</a></li>
<li><a href="cardview.html">カード一覧</a></li>
<li><a href="Q&A.html">よくある質問</a></li>
</ul>
</nav>
<p id="pagetop"><a href="#">↑</a></p>
</div>
<!--/contents-->
<footer>
<div>
製作 日本大学理工学部五味研究室<br>お問い合わせ Mail:gomi12345yuichiro@gmail.com Tel:047-469-5683
</div>
<!--snsリンク-->
<ul class="sns-btn">
<li><a href="https://twitter.com/53laboratory" target="_blank"><img src="images/sns_Twitter.png" alt="Twitter"></a></li>
<li><a href="https://www.facebook.com/53lab/" target="_blank"><img src="images/sns_facebook.png" alt="facebook"></a></li>
</ul>
<!--copyright-->
<small>Copyright© <a href="https://53lab.jp" target="_blank">日本大学理工学部五味研究室</a> All Rights Reserved.(2023)</small>
</footer>
</div>
<!--/container-->
<!--メニューの3本バー-->
<div id="menubar_hdr" class="close"><span></span><span></span><span></span></div>
<!--メニューの開閉処理条件設定 800px以下-->
<script type="text/javascript">
if (OCwindowWidth() <= 800) {
open_close("menubar_hdr", "menubar-s");
}
</script>
</body>
</html>