-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (65 loc) · 2.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1カラムのLP/イベントサイトテンプレート</title>
<!--SEO関連-->
<meta name="description" content="1カラムのLP/イベントサイトテンプレートページ">
<meta name="last-modified" content="2022/09/04">
<!--電話番号の自動リンク無効-->
<meta name="format-detection" content="telephone=no">
<!--OGPの設定-->
<meta property="og:title" content="1カラムのLP/イベントサイトテンプレートページ">
<meta property="og:type" content="website">
<meta property="og:description" content="1カラムのLP/イベントサイトテンプレートページ">
<meta property="og:url" content="ページのURL">
<meta property="og:site_name" content="1カラムのLP/イベントサイトテンプレートページ">
<!--検索エンジンのクロール回避-->
<meta name="robots" content="noindex">
<!--CSSのリンク-->
<link rel="stylesheet" href="./CSS/reset.css">
<link rel="stylesheet" href="./CSS/style.css">
<!--Javascriptのリンク-->
</head>
<body>
<div class="container">
<!--ヘッダー-->
<div class="header">
<div class="header_title">
サイトのタイトル
</div>
<div class="header_nav">
<!--ハンバーガーメニュー-->
<input type="checkbox" id="menu-btn-check">
<label for="menu-btn-check" class="menu-btn"><span></span></label>
<ul class="header_nav_ul">
<li><a href="#section1">メニュー1</a></li>
<li><a href="#section2">メニュー2</a></li>
<li><a href="#section3">メニュー3</a></li>
</ul>
</div>
</div>
<!--メイン-->
<div class="main">
<div class="section" id="section1">
<div class="section_title">セクション1のタイトル</div>
<div class="section_content">セクション1のコンテンツ</div>
</div>
<div class="section" id="section2">
<div class="section_title">セクション2のタイトル</div>
<div class="section_content">セクション2のコンテンツ</div>
</div>
<div class="section" id="section3">
<div class="section_title">セクション3のタイトル</div>
<div class="section_content">セクション3のコンテンツ</div>
</div>
</div>
<!--フッター-->
<div class="footer">
<div class="copywrite"></div>
</div>
</div>
</body>
</html>