-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_3.html
More file actions
48 lines (41 loc) · 2.5 KB
/
Copy pathwrite_3.html
File metadata and controls
48 lines (41 loc) · 2.5 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
<?
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:42%"
aria-valuenow="51" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="d-flex flex-column px-3 pt-7 vh-100 ">
<div>
<h2 class="pb-8">수의는 어떻게 준비할까요?</h2>
</div>
<div class="d-flex gap-3 flex-column">
<input type="radio" class="btn-check" name="options" id="option7" autocomplete="off">
<label class="btn btn-primary-toggle btn-lg w-100" for="option7">고인께서 즐겨입던 옷으로 준비할게요</label>
<input type="radio" class="btn-check" name="options" id="option8" autocomplete="off" >
<label class="btn btn-primary-toggle btn-lg w-100" for="option8">검소한 삼베 수의를 준비해주세요</label>
<input type="radio" class="btn-check" name="options" id="option9" autocomplete="off" >
<label class="btn btn-primary-toggle btn-lg w-100" for="option9">품격있는 수의를 준비해주세요</label>
</div>
<div class="bottom_info">
<div class="subtitle4 cl_description pb-2">수의가 무엇인가요?</div>
<div class="caption1 cl_info">
수의는 입관식 때 고인에게 입혀드리는 옷입니다. 예로부터 수의는 고인이 가장 좋아하는 옷을 입혀드렸습니다. (현재 고인에게 입혀드리는 삼베수의 문화는 일제강점기인 1934년 일본은 의례준칙을 통해 삼베수의를 사용할 것을 강제했으며, 이것이 이어져 현재의 수의 문화에 영향을 주었습니다.)
</div>
</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='write_2.html'">
이전</button>
<button type="button" class="btn btn-lg w-50 btn-primary"
onclick="location.href='write_4.html'">
다음</button>
</div>
</div>
</div>
<!--content e-->
<?
include("include/footer.php");
?>