-
Notifications
You must be signed in to change notification settings - Fork 2
/
landing.html
43 lines (40 loc) · 1.08 KB
/
landing.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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
</header>
<main>
<section id="top-copy">
<h1>記事タイトル</h1>
<p>フック文章</p>
</section>
<section id="body-copy">
<div>
<h2>小見出し1</h2>
<p>コンテンツ本文1</p>
</div>
<div>
<h2>小見出し2</h2>
<p>コンテンツ本文2</p>
</div>
<div>
<h2>小見出し3</h2>
<p>コンテンツ本文3</p>
</div>
</section>
<section id="bottom-copy">
<div>
<h2>まとめ</h2>
<p>まとめ文章</p>
</div>
<div>
CTA
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>