-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
115 lines (111 loc) · 3.65 KB
/
about.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
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="stylesheet" type="text/css" href="ngms.css" />
<title>名古屋ゲームミュージックストリングス</title>
<script>
function init() {
var birthdate = new Date(2013, 10, 17);
var today = new Date();
var age = calcAge(birthdate, today);
var elem = document.getElementById("level");
elem.innerText = age;
}
function calcAge(birthdate, targetdate) {
var age = targetdate.getFullYear() - birthdate.getFullYear();
var birthday = new Date(
targetdate.getFullYear(),
birthdate.getMonth(),
birthdate.getDate()
);
if (targetdate < birthday) {
age--;
}
return age;
}
</script>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-106926727-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-106926727-1");
</script>
</head>
<body onload="init()">
<div id="pagebody">
<!-- ヘッダ -->
<div id="header" class="dot-font">
<h1>
<a href="./">Nagoya Game Music Strings</a>
</h1>
</div>
<!-- メインメニュー -->
<ul id="menu" class="dot-font">
<li class="menu-item" id="menu01">
<a href="./">トップ</a>
</li>
<li class="menu-item" id="menu02">
<a href="about.html">NGMSって?</a>
</li>
<li class="menu-item" id="menu03">
<a href="concert/concert-info.html">コンサート</a>
</li>
<li class="menu-item" id="menu04">
<a href="contents.html">どうが</a>
</li>
<li class="menu-item" id="menu05">
<a href="information.html">といあわせ</a>
</li>
</ul>
<!-- コンテンツ(中央と右の2カラム) -->
<div id="content">
<!-- ニュース(中央カラム) -->
<div id="news">
<h2>楽団紹介</h2>
<hr />
<div class="row">
<div class="col-sm" style="width: 135px; margin-right: 10px">
<img
src="img/ngms-rogo.png"
height="135"
width="135"
style="margin-top: 10px"
/>
</div>
<div class="col-sm">
<h3>NGMS(名古屋ゲームミュージックストリングス)</h3>
<p>ゲーム音楽専門の弦楽合奏団体</p>
<p>
LV
<span id="level"></span>
</p>
<p>主な生息地 主に名古屋市内(現状は大高、中川、瑞穂など)</p>
<br />
</div>
</div>
<hr />
<p>
ゲーム音楽をこよなく愛する 東海地方の有志を中心に設立された。
</p>
<p>
NGME(名古屋ゲームミュージックアンサンブル)という 吹奏楽団の姉妹団体を持っている。
</p>
<p>現在、同じ志を持った仲間を募集している。</p>
<h3>来たれ、ゲーム音楽愛好家!</h3>
</div>
</div>
</div>
</body>
</html>