-
Notifications
You must be signed in to change notification settings - Fork 1
/
rules.html
79 lines (77 loc) · 2.65 KB
/
rules.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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rules</title>
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<div class="mobile">
<div class="status-bar">
<span class="status-time">9:41</span>
<img class="status-icons" src="image/status.png" />
</div>
<header>
<h1 class="header-title">Room mate</h1>
<div class="header-icons">
<img src="image/알림.png" />
<img src="image/유저.png" />
</div>
</header>
<!-- 여기에 내용 작성 -->
<div class="content">
<span class="list-title color1">공통</span>
<ol>
<li>흡연 금지</li>
</ol>
<span class="list-title color2">수면</span>
<ol>
<li>1. 소등 P.M. 11:00</li>
<li class="detail">
늦게 들어올시, 휴대폰 플레시 켜고 조용히 다니기
</li>
<li>2. 점등 A.M. 8:00</li>
<li class="detail">더 일찍 나가는 날은 전날에 미리 말해주기</li>
</ol>
<span class="list-title color3">청소</span>
<ol>
<li>1. 분리수거는 바로바로 해주기</li>
<li class="detail">전체 분리수거는 매주 수요일에 같이하기</li>
<li>2. 대청소는 매달 넷째 주 목요일</li>
<li class="detail">꼭꼭 같이하기</li>
</ol>
<span class="list-title color4">공용물품</span>
<ol>
<li>1. 공용물품은 같이 쓰는 공용비로 구매</li>
</ol>
<span class="list-title color5">음식</span>
<ol>
<li>1. 음식물 남은건 바로바로 버려주기</li>
</ol>
<span class="list-title color6">타인출입</span>
<ol>
<li>1. 타인출입은 가족까지만</li>
<li class="detail">방문 전에 꼭 알려주기</li>
</ol>
<a href="setting_rules.html"
><div class="add-button"><img src="image/규칙 추가 버튼.png" /></div
></a>
</div>
<footer>
<a href="calender.html"
><img class="footer-icon unactivated" src="image/home.png"
/></a>
<a href="rules.html"
><img class="footer-icon" src="image/rule.png"
/></a>
<a href="talk.html"
><img class="footer-icon unactivated" src="image/chat.png"
/></a>
<a href="check_list.html"
><img class="footer-icon unactivated" src="image/friends.png"
/></a>
</footer>
</div>
</body>
</html>