-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_1.html
More file actions
43 lines (38 loc) · 1.72 KB
/
Copy pathwrite_1.html
File metadata and controls
43 lines (38 loc) · 1.72 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
<?
include("include/head.php");
?>
<!--content s-->
<div class="container pb-0">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-label="Basic example" style="width:14%"
aria-valuenow="17" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="d-flex flex-column px-3 pt-7 vh-100 ">
<div>
<h2 class="pb-5">어느 지역에 장례식장을 알아보고 계신가요?</h2>
</div>
<div class="d-flex gap-3 flex-column">
<select class="form-select form-select-lg" aria-label="지역선택">
<option selected>지역선택</option>
<option value="1">제주도</option>
</select>
<select class="form-select form-select-lg" aria-label="시/군/구">
<option selected>전체</option>
<option value="1">제주시</option>
<option value="2">서귀포시</option>
</select>
</div>
<div class="fixed_bottom px-3 py-3 d-flex gap-3">
<button type="button" class="btn btn-lg w-50 btn-gray"
onclick="location.href='index.html'">
메인으로</button>
<button type="button" class="btn btn-lg w-50 btn-primary"
onclick="location.href='write_2.html'">
다음</button>
</div>
</div>
</div>
<!--content e-->
<?
include("include/footer.php");
?>