Skip to content

Commit 86bec36

Browse files
committed
中心的内容の draft
1 parent cceb0dd commit 86bec36

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+548
-890
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style.css" />
7+
</head>
8+
<body>
9+
<div id="container">
10+
<div class="plan">
11+
<h2>Free</h2>
12+
<div class="price">無料</div>
13+
<button class="button">今すぐ始める</button>
14+
<ul class="introduction">
15+
<li>基本的な機能</li>
16+
</ul>
17+
</div>
18+
</div>
19+
</body>
20+
</html>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
body {
2+
background-color: #f0f0f0;
3+
}
4+
5+
.plan {
6+
background-color: #fff;
7+
width: 280px;
8+
}
9+
10+
.button {
11+
background-color: #1da1f2;
12+
color: #fff;
13+
font-size: 16px;
14+
width: 100%;
15+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style.css" />
7+
</head>
8+
<body>
9+
<div id="container">
10+
<div class="plan">
11+
<h2>Free</h2>
12+
<div class="price">無料</div>
13+
<button class="button">今すぐ始める</button>
14+
<ul class="introduction">
15+
<li>基本的な機能</li>
16+
</ul>
17+
</div>
18+
</div>
19+
</body>
20+
</html>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
body {
2+
background-color: #f0f0f0;
3+
}
4+
5+
.plan {
6+
background-color: #fff;
7+
width: 280px;
8+
border: 1px solid #bbb;
9+
border-radius: 8px;
10+
}
11+
12+
.button {
13+
background-color: #1da1f2;
14+
color: #fff;
15+
font-size: 16px;
16+
width: 100%;
17+
border: none;
18+
border-radius: 8px;
19+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style.css" />
7+
</head>
8+
<body>
9+
<div id="container">
10+
<div class="plan">
11+
<h2>Free</h2>
12+
<div class="price">無料</div>
13+
<button class="button">今すぐ始める</button>
14+
<ul class="introduction">
15+
<li>基本的な機能</li>
16+
</ul>
17+
</div>
18+
</div>
19+
</body>
20+
</html>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
body {
2+
background-color: #f0f0f0;
3+
}
4+
5+
.plan {
6+
background-color: #fff;
7+
width: 280px;
8+
border: 1px solid #bbb;
9+
border-radius: 8px;
10+
padding: 16px;
11+
}
12+
13+
.price {
14+
font-size: 20px;
15+
margin-bottom: 16px;
16+
}
17+
18+
.button {
19+
background-color: #1da1f2;
20+
color: #fff;
21+
font-size: 16px;
22+
width: 100%;
23+
border: none;
24+
border-radius: 8px;
25+
padding: 12px;
26+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style.css" />
7+
</head>
8+
<body>
9+
<div id="container">
10+
<div class="plan">
11+
<h2>Free</h2>
12+
<div class="price">無料</div>
13+
<button class="button">今すぐ始める</button>
14+
<ul class="introduction">
15+
<li>基本的な機能</li>
16+
</ul>
17+
</div>
18+
<div class="plan">
19+
<h2>Basic</h2>
20+
<div class="price">$5</div>
21+
<button class="button">今すぐ始める</button>
22+
<ul class="introduction">
23+
<li>基本的な機能</li>
24+
<li>AI アシスタントのサポート</li>
25+
<li>5GB のストレージ</li>
26+
</ul>
27+
</div>
28+
<div class="plan">
29+
<h2>Premium</h2>
30+
<div class="price">$20</div>
31+
<button class="button">今すぐ始める</button>
32+
<ul class="introduction">
33+
<li>全ての機能</li>
34+
<li>AI アシスタントのサポート</li>
35+
<li>20GB のストレージ</li>
36+
</ul>
37+
</div>
38+
</div>
39+
</body>
40+
</html>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
body {
2+
background-color: #f0f0f0;
3+
}
4+
5+
.plan {
6+
background-color: #fff;
7+
width: 280px;
8+
border: 1px solid #bbb;
9+
border-radius: 8px;
10+
padding: 16px;
11+
margin: 20px;
12+
}
13+
14+
.price {
15+
font-size: 20px;
16+
margin-bottom: 16px;
17+
}
18+
19+
.button {
20+
background-color: #1da1f2;
21+
color: #fff;
22+
font-size: 16px;
23+
width: 100%;
24+
border: none;
25+
border-radius: 8px;
26+
padding: 12px;
27+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html lang="ja">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style.css" />
7+
</head>
8+
<body>
9+
<div id="container">
10+
<div class="plan">
11+
<h2>Free</h2>
12+
<div class="price">無料</div>
13+
<button class="button">今すぐ始める</button>
14+
<ul class="introduction">
15+
<li>基本的な機能</li>
16+
</ul>
17+
</div>
18+
<div class="plan">
19+
<h2>Basic</h2>
20+
<div class="price">$5</div>
21+
<button class="button">今すぐ始める</button>
22+
<ul class="introduction">
23+
<li>基本的な機能</li>
24+
<li>AI アシスタントのサポート</li>
25+
<li>5GB のストレージ</li>
26+
</ul>
27+
</div>
28+
<div class="plan">
29+
<h2>Premium</h2>
30+
<div class="price">$20</div>
31+
<button class="button">今すぐ始める</button>
32+
<ul class="introduction">
33+
<li>全ての機能</li>
34+
<li>AI アシスタントのサポート</li>
35+
<li>20GB のストレージ</li>
36+
</ul>
37+
</div>
38+
</div>
39+
</body>
40+
</html>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
body {
2+
background-color: #f0f0f0;
3+
}
4+
5+
#container {
6+
display: flex;
7+
gap: 20px;
8+
}
9+
10+
.plan {
11+
background-color: #fff;
12+
width: 280px;
13+
border-radius: 8px;
14+
border: 1px solid #bbb;
15+
padding: 16px;
16+
}
17+
18+
.price {
19+
font-size: 20px;
20+
margin-bottom: 16px;
21+
}
22+
23+
.button {
24+
background-color: #1da1f2;
25+
color: #fff;
26+
font-size: 16px;
27+
width: 100%;
28+
border: none;
29+
border-radius: 8px;
30+
padding: 12px;
31+
}

0 commit comments

Comments
 (0)