-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.18 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.18 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
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>課題</title>
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="container">
<div class="plan">
<h1>Free</h1>
<div class="price">無料</div>
<button class="button">今すぐ始める</button>
<ul class="introduction">
<li>基本的な機能が使用可能</li>
</ul>
</div>
<div class="plan">
<h1>Basic</h1>
<div class="price">$5</div>
<button class="button">今すぐ始める</button>
<ul class="introduction">
<li>基本的な機能が使用可能</li>
<li>8GB のクラウドストレージが利用可能</li>
</ul>
</div>
<div class="plan">
<h1>Premium</h1>
<div class="price">$20</div>
<button class="button">今すぐ始める</button>
<ul class="introduction">
<li>全ての機能が使用可能</li>
<li>無制限のクラウドストレージが利用可能</li>
</ul>
</div>
</div>
</body>
</html>