Skip to content

Commit

Permalink
sprint1 markup
Browse files Browse the repository at this point in the history
  • Loading branch information
ylem76 committed Apr 26, 2024
1 parent d484597 commit bad675b
Show file tree
Hide file tree
Showing 14 changed files with 430 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
## pull request test

## 요구사항

### 기본
Expand Down
95 changes: 95 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>판다마켓</title>
<link rel="stylesheet" href="./src/css/reset.css" />
<link rel="stylesheet" href="./src/css/style.css" />
</head>
<body>
<header>
<nav class="gnb">
<a href="/" class="logo"><img src="./src/img/common/logo.png" alt="판다마켓" /></a>
<a href="/login" class="btn btn_small">로그인</a>
</nav>
</header>
<div class="kv">
<div class="inner">
<img src="./src/img/main/img_home_top.png" alt="" />
<h1>일상의 모든 물건을 <br />거래해 보세요</h1>
<a class="btn btn_large" href="/items">구경하러 가기</a>
</div>
</div>
<main>
<div class="wrapper">
<section class="inner">
<img src="./src/img/main/img_home_01.png" alt="" />
<div class="desc">
<h2>
<span>Hot item</span>
인기 상품을 <br />확인해 보세요
</h2>
<p> 가장 HOT한 중고거래 물품을 <br />판다 마켓에서 확인해 보세요 </p>
</div>
</section>
<section class="inner">
<img src="./src/img/main/img_home_02.png" alt="" />
<div class="desc">
<h2>
<span>Search</span>
구매를 원하는 <br />상품을 검색하세요
</h2>
<p>구매하고 싶은 물품은 <br />검색해서 쉽게 찾아보세요</p>
</div>
</section>
<section class="inner">
<img src="./src/img/main/img_home_03.png" alt="" />
<div class="desc">
<h2>
<span>Register</span>
판매를 원하는 <br />상품을 등록하세요
</h2>
<p>어떤 물건이든 판매하고 <br />싶은 상품을 쉽게 등록하세요</p>
</div>
</section>
</div>
<div class="bv">
<div class="inner">
<div class="desc">
<h2>
믿을 수 있는 <br />
판다마켓 중고거래
</h2>
</div>
</div>

<img src="./src/img/main/img_home_bottom.png" alt="" />
</div>
</main>
<footer>
<div class="inner">
<span class="copy">©codeit - 2024</span>
<ul class="footer-nav">
<li><a href="/privacy">Privacy Policy</a></li>
<li><a href="/faq">FAQ</a></li>
</ul>
<ul class="sns">
<li
><a target="_blank" href="https://www.facebook.com">
<img src="./src/img/common/ic_facebook.svg" alt="facebook logo" />
</a>
</li>
<li
><a target="_blank" href="https://www.twitter.com"> <img src="./src/img/common/ic_twitter.svg" alt="twitter logo" /> </a
></li>
<li
><a target="_blank" href="https://www.youtube.com"> <img src="./src/img/common/ic_youtube.svg" alt="youtube logo" /> </a
></li>
<li
><a target="_blank" href="https://www.instagram.com"> <img src="./src/img/common/ic_instagram.svg" alt="instagram logo" /> </a
></li>
</ul>
</div>
</footer>
</body>
</html>
135 changes: 135 additions & 0 deletions src/css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
box-sizing: border-box;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

a {
text-decoration: none;
box-sizing: border-box;
}
Loading

0 comments on commit bad675b

Please sign in to comment.