검색화면2.html
1.82 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
<!DOCTYPE html>
<html>
<head>
<title>검색화면2</title>
</head>
<style>
body {
background-color: rgb(230, 243, 255);
line-height: 80%;
}
img {
display:block;
margin:auto;
}
div {
width: 300px;
box-sizing: border-box;
border: 3px solid rgb(191, 191, 191);
border-radius: 4px;
font-size: 25px;
font-family: '배달의민족 도현';
background-color: rgb(230, 243, 255);
background-position: 5px 2.5px;
background-repeat: no-repeat;
padding: 17px 20px 17px 20px;
}
#btn1 {
width: 147px;
height: 60px;
font-size:16px;
font-family: '배달의민족 도현';
text-align: left;
color: gray;
background: white;
border: solid 5px white;
border-radius: 5px;
vertical-align: bottom;
}
#btn2 {
width: 147px;
height: 60px;
font-size:25px;
font-family: '배달의민족 도현';
color: rgb(045, 098, 155);
background: white;
border: solid 5px white;
border-radius: 5px;
}
#btn3 {
width: 147px;
height: 60px;
font-size:25px;
font-family: '배달의민족 도현';
color: rgb(164, 025, 018);
background: white;
border: solid 5px white;
border-radius: 5px;
}
</style>
<body>
<br>
<img style="border-radius:15px;" width="300px;" src="캡처7.png"/>
<form>
<br>
<center><div>체육 시설</div></center><br>
<center><button id="btn1">공과대학<br>필드 하키장</button> <button id="btn3">대여불가</button></center><br>
<center><button id="btn1">학생회<br>3호관 운동장</button> <button id="btn2">대여가능</button></center><br>
<center><button id="btn1">체육대학<br>럭비장</button> <button id="btn2">대여가능</button></center><br>
<center><button id="btn1">전자정보대학<br>농구장</button> <button id="btn3">대여불가</button></center><br>
<br>
<img width="100;" height="70;" align="bottom;" src="khu.png"/>
</form>
</body>
</html>