index.ejs
1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Animal Info</title>
<!-- 합쳐지고 최소화된 최신 CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- 부가적인 테마 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<!-- 합쳐지고 최소화된 최신 자바스크립트 -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<style>
html {
min-height: 100%;
position: relative;
}
body {
height: 100%;
}
.content {
display: flex;
flex-direction: row;
height: 500px;
}
.nav {
flex: 1;
background-color: black;
}
.jumbotron {
flex: 3;
text-align: center;
background-color: white;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
background-color: black;
color: white;
font-weight: lighter;
}
.header {
width: 100%;
background-color: black;
}
.logo {
display: inline;
}
.theme {
display: inline;
color: white;
text-align: center;
font-size: xx-large;
}
</style>
</head>
<body>
<header id="header">
<%- include("components/header") -%>
</header>
<div class="content">
<div class="nav">
<%- include("components/navigation") -%>
</div>
<div class="jumbotron">
<h2>서울시 동물 병원 검색</h2>
<p>
지역 선택
</p>
<select>
<option value='금천구'>금천구</option>
</select>
</div>
</div>
<footer id="footer">
<%- include("components/footer") -%>
</footer>
</body>
</html>