main.html
4.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="kr">
<head>
<title>귀농통계서비스</title>
<meta charset="utf-8">
<!--BOOTSTRAP 사용 부분-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<div id="header">
<style>
#bodyWrap{
text-align: center;
background: #fffce2;
}
a.projectname{
font-family: "THE또박또박";
color: black;
text-decoration:none;
}
a.projectname:hover{
color: orange;
text-decoration:none;
}
h3{
font-family: "Dovemayo";
font-size: 150%;
}
a.nav-link{
font-size: 175%;
font-family: "THE또박또박";
color: rgb(0, 0, 0);
}
a.nav-link:hover{
color: orange;
}
#contentWrap{
text-align:center;
line-height: 220%;
padding: 100px;
}
a.datalink{
color: orange;
}
a.datalink:hover{
color: orangered;
}
p.dataexplain{
font-family: "Dovemayo";
font-size: 150%;
}
table.CategoryTable{
font-family: "Dovemayo";
font-size: 150%;
margin:0 auto;
}
th,td{
padding: 15px;
}
th.orangetext{
color: orangered;
}
</style>
</div>
</head>
<body>
<!--body-->
<div id="bodyWrap">
<div id="header">
<h1 class="projectname"><a class="projectname" href="/market_analysis/maplist">Statistics on Return Farm Project</a></h1>
<br>
<h3>- 귀농 데이터 통계분석 서비스 -</h3>
<br>
</div>
<div id="menubar">
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="/market_analysis/market">Market</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/market_analysis/population">Population</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/market_analysis/returnfarm">Return Farm</a>
</li>
</ul>
</div>
</div>
<!--content-->
<div id="contentWrap">
<p class="dataexplain">
이 서비스는 귀농 데이터 분석을 위한 웹 베이스 서비스입니다.<br>
본 데이터들은 대부분 국가 공공데이터들을 이용하여 분석한 내용입니다.<br>
대부분의 주요 데이터들은 <a class="datalink" href="https://www.data.go.kr/">여기서</a> 확인하실 수 있습니다.<br>
일부 통계청 데이터들은 <a class="datalink" href="https://kosis.kr/openapi/index/index.jsp">KOSIS 공유서비스</a>를 사용하였습니다.
<br><br>
<table class="CategoryTable">
<tr>
<th class="orangetext">Market</th>
<td>농수산물 시장 데이터 분석</td>
</tr>
<tr>
<th class="orangetext">Population</th>
<td>통계청 데이터 기반 인구수 분석</td>
</tr>
<tr>
<th class="orangetext">Return Farm</th>
<td>귀농 관련 데이터 분석</td>
</tr>
</table>
</p>
</div>
</body>
</html>