Skip to content

Instantly share code, notes, and snippets.

@wpflames
Last active August 29, 2020 16:16
Show Gist options
  • Select an option

  • Save wpflames/ba915903c047b6e892f6c4d142ef6738 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/ba915903c047b6e892f6c4d142ef6738 to your computer and use it in GitHub Desktop.
Card UI Design with CSS Flexbox - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Cards</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="card">
<div class="imgBx">
<img src="images/01.jpg" alt="">
</div>
<div class="contentBx">
<div class="content">
<h2>What is Lorem Ipsum?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="imgBx">
<img src="images/02.jpg" alt="">
</div>
<div class="contentBx">
<div class="content">
<h2>Why do we use it?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="imgBx">
<img src="images/03.jpg" alt="">
</div>
<div class="contentBx">
<div class="content">
<h2>Where does it come?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="imgBx">
<img src="images/04.jpg" alt="">
</div>
<div class="contentBx">
<div class="content">
<h2>Where can I get some?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="imgBx">
<img src="images/05.jpg" alt="">
</div>
<div class="contentBx">
<div class="content">
<h2>What is Lorem Ipsum?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment