-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspan.html
More file actions
29 lines (27 loc) · 995 Bytes
/
span.html
File metadata and controls
29 lines (27 loc) · 995 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>인라인 요소 그룹화하기</title>
</head>
<body>
<h1>Coffee Drinks</h1>
<ul>
<li>아메리카노(americano)
<span class="size">Small</span> -
<span class="price">3,000원</span>
<span class="size">Regular</span> -
<span class="price">3,500원</span></li>
<li>카페라떼(cafe latte)
<span class="size">Small</span> -
<span class="price">3,500원</span>
<span class="size">Regular</span> -
<span class="price">4,000원</span></li>
<li>카푸치노(Cappuccino)
<span class="size">Small</span> -
<span class="price">3,800원</span>
<span class="size">Regular</span> -
<span class="price">4,300원</span></li>
</ul>
</body>
</html>