-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (94 loc) · 3.24 KB
/
index.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
<!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">
<title>2023년 버킷리스트</title>
<link rel="stylesheet" type="text/css" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/sparta-bucket2.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Hahmlet&display=swap');
*{
font-family: 'Hahmlet', serif;
}
.title {
color: white;
background-color: tomato;
font-size: 28px;
padding: 5px 15px 10px 15px;
border-radius: 8px;
vertical-align: middle;
}
.bg {
padding: 10px 10px 10px 10px;
width: 383px;
}
.msg {
font-weight: bold;
font-size: 20px;
margin: 0px 0 20px;
color: lightsalmon;
}
.row{
margin-left: 5px;
}
.bucket {
width: 110px;
height: 125px;
font-size: 15px;
font-weight: bold;
}
.bmsg{
font-size: 12px;
position: relative;
}
.img1 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png");
background-size: cover;
background-position: center;
}
.img2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png");
background-size: cover;
background-position: center;
}
</style>
</head>
<body class="bg center">
<h1 class="title center">2023 신년계획</h1>
<p class="msg">2023도 내꺼!</p>
<div class="row flex-row wrap">
<div class="bucket img1 center">졸업하기
<p class="bmsg">학점 3.5 이상!</p>
</div>
<div class="bucket img2 center">다이어리 쓰기
<p class="bmsg img2">작심삼일 그만</p>
</div>
<div class="bucket img1 center">영어공부 하기
<p class="bmsg">오픽 IH, 토익 850</p>
</div>
</div>
<div class="row flex-row wrap">
<div class="bucket img1 center">부스트코스
<p class="bmsg">웹개발, 안드로이드</p>
</div>
<div class="bucket center">
<img class="bucket" src="free-icon-rabbit-6262235.png">
</div>
<div class="bucket img2 center">BOJ 플레
<p class="bmsg img2">골드 벗어나기!</p>
</div>
</div>
<div class="row flex-row wrap">
<div class="bucket img2 center">다이어트
<p class="bmsg img2">10kg 감량</p>
</div>
<div class="bucket img1 center">여행 다녀오기
<p class="bmsg">졸업 여행!</p>
</div>
<div class="bucket img2 center">취업하기
<p class="bmsg img2">잘할 수 있다!</p>
</div>
</div>
</body>
</html>