-
Notifications
You must be signed in to change notification settings - Fork 0
/
test1.html
175 lines (163 loc) · 4.62 KB
/
test1.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!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>Document</title>
<style>
@font-face {
font-family: 'KOTRAHOPE';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2110@1.0/KOTRAHOPE.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'KOTRAHOPE';
}
#clothes {
width: 1000px;
height: 450px;
background-color: antiquewhite;
border-radius: 40px;
padding: 10px 30px;
margin: 80px auto;
}
#clothes h2 {
font-size: 30px;
}
#list {
display: flex;
align-items: center;
justify-content: space-between;
}
#total {
background-color: #eee;
width: 250px;
height: 300px;
padding-top:10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#top {
background-color: #eee;
width: 250px;
height: 300px;
padding-top:10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 20px;
}
#pants {
background-color: #eee;
width: 250px;
height: 300px;
padding-top:10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 20px;
}
#list .between {
font-size: 80px;
}
#list .text {
font-size: 25px;
}
#total img {
width: 200px;
height: 200px;
}
#top img {
width: 200px;
height: 200px;
}
#pants img {
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div id="clothes">
<h2>추천 룩</h2>
<div id="list">
<div id="total">
<img src="./img/new_img_total.jpg" alt="">
<div class="text">
<p>#데이트 룩</p>
</div>
</div>
<p class="between">=</p>
<div id="top">
<img src="./img/new_img1.jpg" alt="">
<div class="text">
<p>실렛 오버 셔츠</p>
</div>
</div>
<p class="between">+</p>
<div id="pants">
<img src="./img/new_img2.jpg" alt="">
<div class="text">
<p>3부 쭈리 스웻 숏팬츠</p>
</div>
</div>
</div>
</div>
<div id="clothes">
<h2>추천 룩</h2>
<div id="list">
<div id="total">
<img src="./img/new_img_total.jpg" alt="">
<div class="text">
<p>#데이트 룩</p>
</div>
</div>
<p class="between">=</p>
<div id="top">
<img src="./img/new_img1.jpg" alt="">
<div class="text">
<p>실렛 오버 셔츠</p>
</div>
</div>
<p class="between">+</p>
<div id="pants">
<img src="./img/new_img2.jpg" alt="">
<div class="text">
<p>3부 쭈리 스웻 숏팬츠</p>
</div>
</div>
</div>
</div>
<div id="clothes">
<h2>추천 룩</h2>
<div id="list">
<div id="total">
<img src="./img/new_img_total.jpg" alt="">
<div class="text">
<p>#데이트 룩</p>
</div>
</div>
<p class="between">=</p>
<div id="top">
<img src="./img/new_img1.jpg" alt="">
<div class="text">
<p>실렛 오버 셔츠</p>
</div>
</div>
<p class="between">+</p>
<div id="pants">
<img src="./img/new_img2.jpg" alt="">
<div class="text">
<p>3부 쭈리 스웻 숏팬츠</p>
</div>
</div>
</div>
</div>
</body>
</html>