-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag-selector.html
More file actions
42 lines (42 loc) · 1.12 KB
/
tag-selector.html
File metadata and controls
42 lines (42 loc) · 1.12 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>블루베리(Blueberry)</title>
<style>
h1,
h2.bluetext {
color: blue;
}
.redtext {
color: red;
}
#container {
background: #ff6a00;
width: 400px;
height: 200px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="container"></div>
<h1>블루베리에 관한 연구</h1>
<h2 class="bluetext">블루베리와 항산화 효능</h2>
<p class="bluetext">블루베리는 항산화제인 ........ 있습니다.</p>
<p>
매사츄세츠 보스톤에 있는
<span class="redtext"
>USDA 노화에 관한 인류 영양 연구센터(the USDA Human Nutrition Center on
Aging)</span
>의 자료에 의하면.....
</p>
<h2>블루베리와 노화</h2>
<p>
<span class="redtext"
>USDA 인류 영양 연구센터 (the USDA Human Nutrition Research Center) </span
>신경과학자들은........
</p>
</body>
</html>