-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChallenge.html
117 lines (104 loc) · 2.79 KB
/
Challenge.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Song+Myung&display=swap" rel="stylesheet">
<title>Challenge</title>
<style>
.display {
box-sizing: border-box;
width: 390px;
height: 844px;
background-color: #FFB967;
}
.money {
position: absolute;
width: 320px;
height: 56px;
left: 35px;
top: 663px;
background: rgba(101, 55, 0, 0.49);
border-radius: 10px;
text-align: center;
line-height: 56px;
}
.donate {
box-sizing: border-box;
position: absolute;
width: 320px;
height: 56px;
left: 35px;
top: 732px;
background: #4112FF;
border-radius: 10px;
text-align: center;
line-height: 56px;
}
* {
font-family: 'Song Myung', serif;
}
</style>
</head>
<body>
<div class="display"></div>
<h1 style="position: absolute;
width: 150px;
height: 38px;
left: 126px;
top: 69px;
font-style: normal;
font-weight: 400;
font-size: 28px;
line-height: 38px;
/* identical to box height, or 136% */
text-align: center;
color: #000000;">챌린지 달성</h1>
<h1 style="position: absolute;
width: 287.61px;
height: 22.59px;
left: 51.15px;
top: 133px;
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
text-align: center;
color: #000000;
transform: rotate(0.37deg);">도장을 모두 모아서 챌린지를 달성했어요 00님 이름으로 기부가 가능해요!</h1>
<img style="position: absolute;
width: 286px;
height: 306px;
left: 54px;
top: 250px;" src="img/challenge.png" />
<h1 style="position: absolute;
width: 200px;
height: 22.59px;
left: 111.15px;
top: 626px;
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
color: #000000;
transform: rotate(0.37deg);">현재 123명이 기부했어요</h1>
<div class="money">
<h1 style="
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
color: #FFFFFF;"
onclick="location.href='MyPage.html'">돈으로 받을래요</h1>
</div>
<div class="donate">
<h1 style="
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
color: #FFFFFF;">기부 할래요</h1>
</div>
</body>
</html>