-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep1_html.html
More file actions
45 lines (44 loc) · 1.66 KB
/
step1_html.html
File metadata and controls
45 lines (44 loc) · 1.66 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DaumBnB 1step</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1>Daum BnB!</h1>
<!-- 코딩 구역 시작 -->
<!-- TODO : 코딩 시작 -->
<div class="jumbotron">
<div class="container">
<h1>Daum BnB!</h1>
<p>본사이트는 전세계 어디서나 BnB 관련 정보를 찾는 사이트입니다.</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>웹검색 결과</h2>
<p>웹 검색 결과를 표시합니다. 여기서 오픈API를 사용합니다.</p>
</div>
<div class="col-md-4">
<h2>이미지 검색결과</h2>
<p>검색 결과를 표시합니다. 여기서 오픈API를 사용합니다.</p>
</div>
<div class="col-md-4">
<h2>기타 검색 결과</h2>
<p>검색 결과를 표시합니다. 여기서 오픈API를 사용합니다.</p>
</div>
</div>
<!-- 코딩 구역 끝 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>