-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (105 loc) · 4.8 KB
/
index.html
File metadata and controls
114 lines (105 loc) · 4.8 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>田中のおうち</title>
<meta name="description" content="田中のおうちをのぞいてみましょう" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
<meta name="format-detection" content="telephone=no" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="./img/icon.ico" type="image/x-icon">
</head>
<body>
<header class="header">
<h1>田中のおうち</h1>
<nav class="nav">
<ul>
<li class="nav-li">ホーム</li>
<li class="nav-li"><a href="./visit/index.html" title="visit">おでかけ</a>
<li class="nav-li"><a href="./hobby/index.html" title="hobby">趣味</a>
<li class="nav-li"><a href="./news/index.html" title="contact">ニュース</a></li>
<li class="nav-li"><a href="./contact/index.html" title="contact">お問い合わせ</a></li>
</ul>
</nav>
</header>
<main>
<section id="about" class="wrapper">
<img src="./img/header.jpg" alt="sigureヘッダー" />
<h2 class="content-title">About</h2>
<dl>
<dt>名前</dt>
<dd>SIGULENE</dd>
<dt>出身</dt>
<dd>京都</dd>
<dt>学校</dt>
<dd>京都デザイン&テクノロジー専門学校</dd>
<dt>専攻</dt>
<dd>ホワイトハッカー</dd>
</dl>
<p class="profile">始めまして。SIGULENEと申します。よろしくお願いいたします。</p>
</section>
<section id="news" class="wrapper">
<h2 class="content-title">News</h2>
<div class="message">
<p>💙最新ニュース💙</p>
</div>
<dl>
<dt>2022.10.31</dt>
<dd>学園祭お疲れ様でした!</dd>
<dt>2022.10.20</dt>
<dd>10月10日のCTFコンテストの結果…</dd>
<dt>2022.08.25</dt>
<dd>課題が完成しました!</dd>
<dt>2022.08.15</dt>
<dd>ふと課題のことを思い出し焦り始めます…。</dd>
<dt>2022.08.08</dt>
<dd>しばらく3時寝14時起きの不健康生活が始まります…。</dd>
<dt>2022.07.28</dt>
<dd>寝不足気味で昼夜が逆転し始めます…。</dd>
<dt>2022.07.22</dt>
<dd>ゲームのランク上げに夢中で課題のことを忘れています…。</dd>
<dt>2022.07.15</dt>
<dd>最終課題に着手しました!</dd>
<dt>2022.07.08</dt>
<dd>最終課題の構想を始めます!</dd>
</dl>
</section>
<section id="Photo" class="wrapper">
<h2 class="content-title">Favorite</h2>
<p>画像クリックで詳細へ飛べます。</p>
<ul class="photolist">
<li>
<a href="./hobby/index.html#sigure"><img src="./img/main_sigure.jpg" alt="sigure" /></a>
</li>
<li>
<a href="./visit/index.html#ryokou"><img src="./img/main_ryokou.jpg" alt="ryokou1" /></a>
</li>
<li>
<a href="./visit/index.html#hanabi"><img src="./img/main_hanabi.jpg" alt="hanabi" /></a>
</li>
</ul>
<ul class="photolist">
<li>
<a href="./hobby/index.html#neko"><img src="./img/main_neko_float.jpg" alt="neko" onmouseover="this.src='./img/main_neko.jpg'" onmouseout="this.src='./img/main_neko_float.jpg'" /></a>
</li>
<li>
<a href="./visit/index.html#blue"><img src="./img/main_blue.jpg" alt="blue" /></a>
</li>
<li>
<a href="./visit/index.html#yo-ziya"><img src="./img/main_yo-ziya.jpg" alt="yo-ziya" /></a>
</li>
</ul>
</section>
<section id="Contact" class="wrapper">
<h2 class="content-title">Contact</h2>
<a href="./contact/index.html">お問い合わせはこちらから</a>
</section>
</main>
<footer>
<p>当ページ内の画像の無断使用を禁止します。</p>
<p>copylight 2022 sigulene</p>
</footer>
</body>
</html>