-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (70 loc) · 1.95 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.header {
background-color: lightslategray;
height: 10%;
display: flex;
justify-content: center;
align-items: center;
}
.container {
height: 80%;
display: flex;
padding: 10px;
}
.left {
width: 20%;
border-right: 1px solid black;
}
.right {
width: 80%;
padding-left: 10px;
}
.footer {
background-color: lightslategray;
height: 10%;
display: flex;
justify-content: center;
align-items: center;
}
ul {
list-style: none;
}
</style>
</head>
<body>
<div class="header">
<h3>City Gallery</h3>
</div>
<div class="container">
<div class="left">
<ul>
<li>CheongJu</li>
</ul>
</div>
<div class="right">
<img src="./macbook.jpg" alt="no pic" height="50%">
<h1>CheongJu</h1>
<p>(서울=연합뉴스) 박성진 이신영 이태수 기자 = 25일 신고된 3건의 아프리카돼지열병(ASF) 의심 사례 가운데 1건에 대해서는 양성 확진이, 다른 1건에 대해 음성 판정이 내려졌다. 나머지 1건에 대한 정밀검사는
진행 중이다.
농림축산식품부에 따르면 인천 강화군 불은면에 있는 한 농장에서 아프리카돼지열병이 이날 오후 확진됐다. 이로써 국내에서 아프리카돼지열병이 발병한 농장 수는 6곳으로 늘어났다.
농식품부는 아프리카돼지열병 중점관리지역 내에 있는 이 농장의 의심 사례를 정밀검사한 결과 확진 판정이 나왔다고 밝혔다.</p>
</div>
</div>
<div class="footer">
<p>© CBNU Likelion public seminar</p>
</div>
</body>
</html>