-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>推し乃介</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="module" src="js/today.js"></script>
<!-- Google tag (gtag.js) -->
</head>
<body>
<div id="content">
<header>
<h1><a href="index.html">推し乃介</a></h1>
</header>
<p class="center">ここにテキストが入ります。</p>
<div id="left">
<h2>本日の予定</h2>
<div id="scroll">
<div id="today-schedule"></div>
</div>
</div>
<div id="right">
<h2><a href="schedule.html">スケジュール一覧(カレンダー)</a></h2>
<p>カレンダー形式で予定を確認できます。</p>
<h2><a href="profile.html">推し別スケジュール</a></h2>
<p>各推しのプロフィールと今後のイベントが表示されます。</p>
<h2> <a href="https://baseball-mascot.com" target="_blank" rel="noopenner noreffer">球団マスコットの情報。</a></h2>
<p>このシステムで作成したサイト</p>
</div>
<footer class="footer">
<div class="footer__title"><b>推し乃介</b></div>
<nav>
<ul class="footer__list">
<li><a href="../index.html" class="footer__link">TOP</a></li>
<li><a href="../schedule.html" class="footer__link">月別</a></li>
<li>
<a href="../profile.html" class="footer__link">推し別</a>
</li>
<li>
<a href="../aboutus.html" class="footer__link"
>このサイトについて</a
>
</li>
</ul>
</nav>
<p class="footer__copyright">
非公式サイトです。最新情報は、公式サイトをご覧ください。
</p>
</footer>
</div>
</body>
</html>