-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (142 loc) · 5.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>나만의 중고마켓</title>
<link
rel="stylesheet"
href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/easygpt/default.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<style>
/* 꾸미기 */
.hero {
margin-bottom: 100px; /* 원하는 여백 값(px)을 설정하세요. */
}
.card:hover {
transform: scale(1.1); /* 마우스 오버 시 이미지를 1.1배 확대 */
transition: transform 0.3s ease; /* 부드러운 변화를 위한 트랜지션 추가 */
}
</style>
</head>
<body>
<div class="hero bg-dark text-center py-5">
<h1 class="text-white">나만의 르탄마켓</h1>
<h2 class="text-white">집에 있는 물건을 팝니다!</h2>
</div>
<div class="container mt-5">
<div class="row">
<!-- 냄비 카드 -->
<div class="col-md-4">
<div class="card" style="width: 18rem">
<img
src="https://images.unsplash.com/photo-1590794056226-79ef3a8147e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cG90fGVufDB8fDB8fHww&auto=format&fit=crop&w=500&q=60"
class="card-img-top"
alt="냄비 이미지"
/>
<div class="card-body">
<h5 class="card-title">냄비</h5>
<h6 class="card-subtitle mb-2 text-muted">5만원</h6>
<p class="card-text">
한 번 밖에 안 쓴 냄비 팝니다. 부모님이 독립할 때 주신 거에요!
</p>
<a
href="https://spartacodingclub.kr/"
class="btn btn-primary"
target="_blank"
rel="noopener noreferrer"
>
상세 정보 보기
</a>
</div>
</div>
</div>
<!-- 전기밥솥 카드 -->
<div class="col-md-4">
<div class="card" style="width: 18rem">
<img
src="https://images.unsplash.com/photo-1544233726-9f1d2b27be8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8JUVCJUIwJUE1JUVDJTg2JUE1fGVufDB8fDB8fHww&auto=format&fit=crop&w=500&q=60"
class="card-img-top"
alt="전기밥솥 이미지"
/>
<div class="card-body">
<h5 class="card-title">전기밥솥</h5>
<h6 class="card-subtitle mb-2 text-muted">8만원</h6>
<p class="card-text">
거의 사용하지 않은 전기밥솥 팝니다. 상태 양호합니다.
</p>
<a
href="https://spartacodingclub.kr/"
class="btn btn-primary"
target="_blank"
rel="noopener noreferrer"
>
상세 정보 보기
</a>
</div>
</div>
</div>
<!-- 주전자 카드 -->
<div class="col-md-4">
<div class="card" style="width: 18rem">
<img
src="https://images.unsplash.com/photo-1622088934558-b729cf3c8cf8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8JUVCJUFDJUJDJTIwJUVDJUEzJUJDJUVDJUEwJTg0JUVDJTlFJTkwfGVufDB8fDB8fHww&auto=format&fit=crop&w=500&q=60"
class="card-img-top"
alt="주전자 이미지"
/>
<div class="card-body">
<h5 class="card-title">주전자</h5>
<h6 class="card-subtitle mb-2 text-muted">3만원</h6>
<p class="card-text">
사용감이 있지만 기능에는 문제 없는 주전자 팝니다.
</p>
<a
href="https://spartacodingclub.kr/"
class="btn btn-primary"
target="_blank"
rel="noopener noreferrer"
>
상세 정보 보기
</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem">
<img
src="청소기.jpeg"
class="card-img-top"
alt="청소기 이미지"
/>
<div class="card-body">
<h5 class="card-title">청소기</h5>
<h6 class="card-subtitle mb-2 text-muted">30만원</h6>
<p class="card-text">
흡입력 있는 좋은 청소기!
</p>
<a
href="https://spartacodingclub.kr/"
class="btn btn-primary"
target="_blank"
rel="noopener noreferrer"
>
상세 정보 보기
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>