-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.22 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 1.22 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
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>タイトル(Google検索で表示されるやつ)</title>
<meta name="description" content="サイトの説明(Google検索で表示されるやつ)">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="./assets/js/script.js"></script>
</head>
<body>
<!-- ヘッダー -->
<header class="header">
<!-- ロゴとかタイトル -->
<a href="#">ロゴとかタイトル</a>
<!-- メニュー -->
<nav>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
</nav>
</header>
<!-- メイン -->
<main>
<h1>見出し1</h1>
<p>テキストテキストテキスト</p>
<section>
<h2>セクション</h2>
<p class="red">テキストテキストテキスト</p>
</section>
<section>
<h2>セクション</h2>
<p>テキストテキストテキスト</p>
<img src="./assets/img/sample.png">
</section>
</main>
<!-- フッター -->
<footer>
© 2022 <a href="https://github.com/ohno">Shuhei Ohno</a>
</footer>
</body>
</html>