Skip to content

Commit

Permalink
helbak 카피캣
Browse files Browse the repository at this point in the history
  • Loading branch information
rona-kim committed Jul 16, 2021
1 parent 3f576fc commit 87543de
Show file tree
Hide file tree
Showing 2 changed files with 614 additions and 0 deletions.
212 changes: 212 additions & 0 deletions helbak_ex.html
@@ -0,0 +1,212 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="descripeion" content="덴마크 쇼핑몰 카피캣 연습">
<meta name="author" content="rona">
<meta name="keywords" content="html, css, tutorial">

<link rel="stylesheet" type="text/css" href="css/style.css">

<title>Helbak</title>
</head>
<body>


<header id="header">
<h1>
<a href="#" class="logo">
<img src="https://via.placeholder.com/186x18">
</a>
</h1>

<nav class="buttons">
<ul>
<li>
<a href="#" class="menu_button">
<img src="https://via.placeholder.com/22x20">
</a>
</li>
<li>
<a href="#" class="menu_button">
<img src="https://via.placeholder.com/22x20">
</a>
</li>
<li>
<a href="#" class="menu_button">
<img src="https://via.placeholder.com/22x20">
</a>
</li>
</ul>
</nav>
</header>

<!-- article을 사용하려면 타이틀이 필요함,여기에선 제품명 -->

<main role="main" class="main_content">
<ul class="product_group">
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 1</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 2</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 3</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 4</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 5</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
<li>
<a href="#" class="product_group_link">
<article>
<h2 class="link_text">Product 6</h2>
<img src="https://via.placeholder.com/1000x563">
</article>
</a>
</li>
</ul>
</main>

<footer id="footer">
<nav class="left_nav">
<ul>
<li><a href="#">Terms and conditions</a></li>
<li><a href="#">Cookies</a></li>
</ul>
</nav>
<nav class="right_methods">
<h3>Payment Methods</h3>
<ul>
<li><span class="payment_icon one"></span></li>
<li><span class="payment_icon two"></span></li>
<li><span class="payment_icon three"></span></li>
<li><span class="payment_icon four"></span></li>
<li><span class="payment_icon five"></span></li>
</ul>
</nav>
<a href="#" class="to_top_button"></a>
</footer>



























































































</body>
</html>

0 comments on commit 87543de

Please sign in to comment.