-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwrite.html
88 lines (81 loc) · 2.87 KB
/
write.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="project-easy-selling-clothes-web">
<meta name="keywords" content="clothes, project, easy-selling, deeplearning">
<meta name="developer" content="박채린, 김도은, 오서영">
<title>시옷 : 쉬운 옷 팔기 서비스</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--(1) 메뉴-->
<div class="menu">
<!--로고 이미지 삽입-->
<a href="index.html"><img src="./img/logo.png" alt="시옷"></a>
<!--검색 구현-->
<input type="search" placeholder="원하는 상품을 검색해보세요">
<!--키워드, 로그인, 회원가입 메뉴-->
<a href="" id="keyword">키워드</a>
<a href="signin.html" id="login">로그인</a>
<a href="signup.html" id="signup">회원가입</a>
</div>
<!--(2) 판매글 올리기 텍스트와 언더라인-->
<div class="title">
<!--"판매글 올리기" 텍스트 삽입-->
<h1>판매글 올리기</h1>
<!--언더라인-->
<hr>
</div>
<div class="write">
<!--(3) 사진 업로드-->
<br>
<div class="subheading">
<li>📌사진</li>
</div>
<!--(4) 사용감 선택-->
<br><br>
<div class="subheading">
<li>📌사용감</li>
</div>
<br>
<label><input type="checkbox"> 새 것  </label>
<label><input type="checkbox"> 1회 사용  </label>
<label><input type="checkbox"> 5회 미만 사용  </label>
<label><input type="checkbox"> 10회 미만 사용  </label>
<label><input type="checkbox"> 10회 이상 사용</label>
<!--(5) 사이즈 선택-->
<br><br>
<div class="subheading">
<li>📌사이즈</li>
</div>
<br>
<label><input type="checkbox"> XS  </label>
<label><input type="checkbox"> S  </label>
<label><input type="checkbox"> M  </label>
<label><input type="checkbox"> L  </label>
<label><input type="checkbox"> XL</label>
<!--(6) 거래 수단 체크-->
<br><br>
<div class="subheading">
<li>📌거래수단</li>
</div>
<br>
<label><input type="checkbox"> 직거래  </label>
<label><input type="checkbox"> 택배</label>
<!--(7) 가격 입력-->
<br><br>
<div class="subheading">
<li>📌가격</li>
</div>
<br>
<input type="number">
</div>
<br>
<!--(8) 언더라인과 버튼-->
<hr>
<form action="" class="regisbtn">
<input type="submit" value="등록 후 다른 옷 추가" id="1"/>
<input type="submit" value="등록" id="2"/>
</form>
</body>