-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoffee.html
More file actions
53 lines (50 loc) · 1.95 KB
/
Copy pathcoffee.html
File metadata and controls
53 lines (50 loc) · 1.95 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
50
51
52
53
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee - Aco-gt</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #ffffff; color: #1f2328; min-height: 100vh; display: flex; justify-content: center; padding: 60px 20px; }
.container { max-width: 720px; width: 100%; }
h1 { font-size: 2rem; margin-bottom: 8px; }
.back { color: #57606a; font-size: 0.9rem; margin-bottom: 40px; display: block; text-decoration: none; }
.back:hover { color: #1f2328; }
ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
li a { color: #0969da; text-decoration: none; }
li a:hover { text-decoration: underline; }
h2 { font-size: 1rem; color: #57606a; border-bottom: 1px solid #d0d7de; padding-bottom: 8px; margin: 32px 0 16px; }
</style>
</head>
<body>
<div class="container">
<a href="index.html" class="back">← Back</a>
<h1>☕ Coffee</h1>
<p style="color:#57606a; margin: 16px 0 0;">好きなコーヒーのリンク</p>
<h2>好きな豆</h2>
<ul>
<li>
<a href="https://shop.obscura-coffee.com/product/detail/237" target="_blank">【中煎り】ニカラグア「リモンシージョ農園」 200g</a>
<div class="note">OBSCURA COFFEE ROASTERS</div>
</li>
<li>
<a href="https://shop.obscura-coffee.com/product/detail/1060" target="_blank">【中煎り】ブルンジ「カランボWS」 200g</a>
<div class="note">OBSCURA COFFEE ROASTERS</div>
</li>
</ul>
<h2>使っている器具</h2>
<ul>
<li>TIMEMORE C3</li>
<li>HARIO V60 01</li>
<li>AeroPress</li>
</ul>
<h2>おすすめ動画</h2>
<ul>
<li>
<a href="https://www.youtube.com/@poorcoffee/videos" target="_blank">プアコーヒー</a>
</li>
</ul>
</div>
</body>
</html>