-
Notifications
You must be signed in to change notification settings - Fork 0
/
problem4.html
69 lines (68 loc) Β· 2.57 KB
/
problem4.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="problem4.css"/>
<title>κ°κ³λΆ</title>
</head>
<body>
<h1>μ΄λ보μ μΌλ§ λ¨μλ?</h1>
<header class="totalsum">
<h3>νΈμ£Όλ¨Έλ</h3><p><strong> 71000</strong></p>
<div class="total" >
<div class="allincome"> <span class="plus-button">+</span> μ΄μμ
150000</div>
<div class="alloutcome"><span class="minus-button">-</span> μ΄μ§μΆ 79000</div>
</div>
</header>
<div class="date">
<button type="button" class="left"><</button> 10μ 12μΌ <button type="button" class="right">></button>
</div>
<section class="main">
λ΄μ리μ€νΈ
<div>
<input type="checkbox" checked/><button type="button" class="income">μμ
</button>
<input type="checkbox" checked/><button type="button" class="outcome">μμΆ</button>
</div>
</section>
<section class="details">
<div class="item"> <span class="category">μΌν</span>
<strong class="detail">λͺ¨λμλ°μ€ν¬λ¦½νΈ</strong>
<div>
<span class="money_minus"> 40500</span>
<button type="button" class="x">x</button></div>
</div>
<div class="item"> <span class="category">μλΉ</span>
<strong class="detail">μν¬μ΅ 1μ°¨λΉμ© </strong>
<div>
<span class="money_minus"> 13700</span>
<button type="button" class="x">x</button></div>
</div>
<div class="item"> <span class="category">μλΉ</span>
<strong class="detail">μν¬μ΅2 μ°¨λΉμ© </strong>
<div>
<span class="money_minus"> 2800</span>
<button type="button" class="x">x</button></div>
</div>
<div class="item"> <span class="category">μ©λ</span>
<strong class="detail">μΆμμ©λ</strong>
<div>
<span class="money_plus"> 150000</span>
<button type="button" class="x">x</button></div>
</div>
<div class="item"> <span class="category">μλΉ</span>
<strong class="detail">μΈλΈμΌλ λΈ</strong>
<div>
<span class="money_minus">10800</span>
<button type="button" class="x">x</button></div>
</div>
<div class="item"> <span class="category">κ΅ν΅</span>
<strong class="detail">κ³ μλ²μ€</strong>
<div>
<span class="money_minus"> 11200</span>
<button type="button" class="x">x</button></div>
</div>
</section>
<footer class="plus_button"><button type="button" class="last">+</button></footer>
</body>
</html>