-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.5 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.5 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
<html lang="ko">
<Head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>고량주</title>
<link rel="stylesheet" href="./style.css">
</Head>
<body>
<header>
<span class="title">고량주</span>
</header>
<main>
<div class="sidebar">
<span>소주</span>
<span>맥주</span>
<span>샴페인</span>
<span>와인</span>
<span>럼</span>
</div>
<section class="container">
<div class="card">
<img src="./images/soju.png" alt="소주" />
<span>저는 소주를 안 좋아해요!</span>
</div>
<div class="card">
<img src="./images/beer.jpg" alt="맥주" />
<span>애플퐉스같은 맛있는 맥주가 좋아요.</span>
</div>
<div class="card">
<img src="./images/champagne.jpg" alt="샴페인" />
<span>샴페인 좋아요~ 샴페인 좋아요~</span>
</div>
<div class="card">
<img src="./images/wine.jpg" alt="와인" />
<span>와인의 매력을 아직 깨닫지 못했어요.</span>
</div>
<div class="card">
<img src="./images/rum.jpg" alt="럼" />
<span>먹어본 적이 없을 무!</span>
</div>
</section>
</main>
</body>
</html>