-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (111 loc) · 4.28 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
<!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>
/* 꾸미기 */
</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>
</div>
</body>
</html>