Created
March 15, 2019 06:58
-
-
Save javascript5/7b6cad86e94f58f3e21f411d22bc3185 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link rel="stylesheet" href="style.css"> | |
<script | |
src="http://code.jquery.com/jquery-3.3.1.slim.js" | |
integrity="sha256-fNXJFIlca05BIO2Y5zh1xrShK3ME+/lYZ0j+ChxX2DA=" | |
crossorigin="anonymous"></script> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<div class="promotion_filter"> | |
<div class="category_filter"> | |
<select class="post_filter"> | |
<option value="1">1</option> | |
<option value="2">2</option> | |
<option value="3">3</option> | |
</select> | |
</div> | |
<div class="list_and_grid_button"> | |
<div class="list_button"> | |
list | |
</div> | |
<div class="grid_button"> | |
grid | |
</div> | |
</div> | |
</div> | |
<div class="post"> | |
<div class="post_item list_item" category="1"> | |
<div class="post_thumbnail"> | |
<img | |
src="./images/wp.png" /> | |
</div> | |
<div class="right_post_item"> | |
<div class="post_title"> | |
<h1>Lorem Ipsum</h1> | |
</div> | |
<div class="post_description"> | |
<span> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
</span> | |
</div> | |
<div class="read_more_button"> | |
</div> | |
</div> | |
</div> | |
<div class="post_item list_item" category="2"> | |
<div class="post_thumbnail"> | |
<img | |
src="./images/wp.png" /> | |
</div> | |
<div class="right_post_item"> | |
<div class="post_title_item"> | |
<h1>Lorem Ipsum</h1> | |
</div> | |
<div class="post_description_item"> | |
<span> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
</span> | |
</div> | |
</div> | |
</div> | |
<div class="post_item list_item" category="3"> | |
<div class="post_thumbnail"> | |
<img | |
src="./images/wp.png" /> | |
</div> | |
<div class="right_post_item"> | |
<div class="post_title_item"> | |
<h1>Lorem Ipsum</h1> | |
</div> | |
<div class="post_description_item"> | |
<span> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
</span> | |
</div> | |
</div> | |
</div> | |
<div class="post_item list_item" category="3"> | |
<div class="post_thumbnail"> | |
<img | |
src="./images/wp.png" /> | |
</div> | |
<div class="right_post_item"> | |
<div class="post_title_item"> | |
<h1>Lorem Ipsum</h1> | |
</div> | |
<div class="post_description_item"> | |
<span> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
</span> | |
</div> | |
</div> | |
</div> | |
<div class="post_item list_item" category="4"> | |
<div class="post_thumbnail"> | |
<img | |
src="./images/wp.png" /> | |
</div> | |
<div class="right_post_item"> | |
<div class="post_title_item"> | |
<h1>Lorem Ipsum</h1> | |
</div> | |
<div class="post_description_item"> | |
<span> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment