Feb 1, 20211 min read

Card with HTML and CSS

Learn to create beautiful card designs with HTML and CSS. Build modern UI cards with images, text, and hover effects for your website.

Card with HTML and CSS

In this article, you will learn how to make Card using only HTML and CSS.I have shared another snippet based on how to create a Responsive Card with HTML and CSS. In this tutorial, I have created Website Card Layout with HTML and CSS, If you like this article, please also subscribe my channel - Code Info

You may like this:

Source Code:

If you like this Card Design, then feel free to use it in your project. Copy the code by clicking on Copy button provided below. First, you have to create two files. One of them is HTML, and the other one is CSS. After creating the files, paste the code provided below.

Card with HTML and CSS
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>Card | By Code Info</title>
7 <link rel="stylesheet" href="style.css" />
8 </head>
9 <body>
10 <div class="container">
11 <div>
12 <h1>Follow Us</h1>
13 <p>
14 Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti
15 illum aperiam minima reprehenderit,<br />
16 ex ratione voluptatibus? Explicabo <br />
17 quo tempora corrupti!
18 </p>
19 <div class="icons">
20 <img src="images/insta.svg" />
21 <img src="images/tw.png" />
22 <img src="images/fa.png" />
23 </div>
24 </div>
25 <div>
26 <img src="images/pic.png" />
27 </div>
28 </div>
29 </body>
30</html>

I hope you liked this snippet. If so, please share the blog and follow us in our social media profiles and stay connected with this blog. Thank you for visiting.