-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
43 lines (43 loc) · 1.31 KB
/
example.html
File metadata and controls
43 lines (43 loc) · 1.31 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
<html>
<head>
<meta charset="utf-8"/>
<meta lang="ko-kr">
<title> 웹크롤링 예제</title>
<style>
h1 {
color: green;
}
.c {
color: orange;
background: black;
margin: 20px;
}
#special {
color: indigo;
text-align: center;
background: beige;
margin: 50px;
}
</style>
</head>
<body>
<h1>안녕하세요!</h1>
<div class="c">
python3 + beautifulsoup4와 함께<br/>
즐거운 웹크롤링을 해봅시다.
</div>
<p class="c" id="special">
id는 class보다 더 강력합니다.<br/>
그렇기 때문에, class에서 지정한 문자 컬러가 orange라도<br/>
여기서는 indigo 컬러의 문자를 출력하게 되죠.
</p>
<p align="center">
이 영역은 클래스, id가 없는 평범한 영역입니다.
<a href="http://www.google.co.kr">구글이다!!!</a>
</p>
<a href="http://www.daum.net">다음이다!!</a>
<span>
<a href="http://www.naver.com">야호! 네이버다!!!</a>
</span>
</body>
</html>