Coding BD given Cloning Instagram Website Post using Html CSS. You can create an instagram website card. We create an instagram ui html css. It is the most important part Of Build an Instagram post card clone. We have given more importance to instagram clone. They used pure css effects. because they need highly effective effects. Thank you so much.
Create a Payoneer Account & Earn 25$:→ https://www.payoneer.com/raf/?rid=75EACA0E-2937-4D6B-A225-4255EB9B758A
Create a Fiverr Account & Earn 100$:→ http://www.fiverr.com/s2/83f49a18f7
?? If You like this video Please like, share and subscribe This video.??
?? Check Others Programming Video?
➡️How To Create Login Form In HTML and CSS: https://www.youtube.com/watch?v=51t-kR8MUvY
➡️ contact page design with map using html css: https://www.youtube.com/watch?v=RC2-bq4fBYI
➡️ Pure sliding tabs using html and css: https://www.youtube.com/watch?v=QonCizKyHrs
➡️ Animated Background Image Loop Animation: https://www.youtube.com/watch?v=7HyTFr5kNSU&t=284s
➡️ water wave background animation effects: https://www.youtube.com/watch?v=dnCfBet94r8&t=49s
➡️ How to Download Source code in Coding BD: https://www.youtube.com/watch?v=WXAZ-BScKBE&t=3s
➡️ Responsive website html css javascript | part( 1 ): https://www.youtube.com/watch?v=g0ART2Jc3yw&t=3s
➡️ Responsive Services Section: https://www.youtube.com/watch?v=wvLkyrkoS_w&t=69s
➡️ Plane animation only html css: https://www.youtube.com/watch?v=XcYlfp8sFX0
➡️ CSS Responsive CARD Hover Effects & Adding Stroke to Text | Html5 CSS3 2021: https://www.youtube.com/watch?v=QVMJ5PdX7Ag&t=14s
➡️ Neon Light Button Animation Effects on Hover | CSS Snake Border: https://www.youtube.com/watch?v=GtVSF-efdJQ&t=102s
➡️ Responsive Box Model Web Design Using CSS Flexbox: https://www.youtube.com/watch?v=03RuVB6B5KQ&t=0s
➡️ Digital Clock with Animated Progress-bar | HTML CSS & Vanilla Javascript: https://www.youtube.com/watch?v=6A6HpxMmfX4&t=0s
➡️ How to create a light to dark mode for HTML CSS & Vanilla Javascript 2021: https://www.youtube.com/watch?v=43FbR6ailIk&t=28s
➡️Scroll top button : https://www.youtube.com/watch?v=9fDEJkXQIIs&t=77s
Source code here: ( Cloning Instagram Website Post using Html CSS. )
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloning Instagram Website Post Card using Html CSS</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="top_bar">
<div class="profile_img">
<img src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8cHJvZmlsZSUyMHBpY3R1cmV8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60"
alt="">
<span>Coding BD</span>
</div>
<i class="fa fa-ellipsis-h"></i>
</div>
<div class="main_img">
<img src="https://images.unsplash.com/photo-1517849845537-4d257902454a?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTV8fHByb2ZpbGUlMjBwaWN0dXJlfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60"
alt="">
</div>
<div class="footer">
<div class="icons">
<div class="left_side">
<i class="fa fa-heart-o" aria-hidden="true"></i>
<i class="fa fa-comment-o" aria-hidden="true"></i>
<i class="fa fa-paper-plane-o" aria-hidden="true"></i>
</div>
<div class="right_side">
<i class="fa fa-bookmark-o" aria-hidden="true"></i>
</div>
</div>
<div class="likeCount">
<p>10,890 Likes</p>
</div>
<div class="content">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facilis excepturi impedit facere, ad
adipisci, cum veritatis libero ipsam, ex quo quis neque debitis tenetur consequatur?</p>
</div>
<div class="comments">
<p>View All 1008 Comments</p>
</div>
<div class="comments_box">
<div class="icon">?</div>
<div class="input_field">
<input type="text" placeholder="Add a Comments..." id="">
</div>
<div class="btn"><button>Post</button></div>
</div>
</div>
</div>
</body>
</html>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 180vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Poppins";
background: #ebe7e7;
}
.container {
width: 640px;
background: #ffffff;
overflow: hidden;
border-radius: 3px;
border: 1px solid #dbdbdb;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
}
.top_bar {
width: 100%;
height: 75px;
padding: 25px 16px;
display: flex;
justify-content: space-between;
align-items: center;
}
.profile_img {
width: 100%;
height: 100%;
position: relative;
}
.profile_img img {
position: absolute;
top: -5px;
left: -5px;
width: 42px;
height: 42px;
border-radius: 50%;
display: inline-block;
object-fit: cover;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}
.profile_img span {
margin-left: 50px;
}
.main_img {
width: 640px;
height: 640px;
margin-bottom: 15px;
}
.main_img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.footer {
padding-left: 16px;
padding-right: 16px;
}
.icons {
display: flex;
justify-content: space-between;
padding: 5px 0;
}
.icons .fa {
font-size: 24px;
cursor: pointer;
}
.icons .left_side .fa {
margin: 0px 3px;
color: #010101;
}
.likeCount p {
color: #010101;
font-size: 14px;
}
.content p {
padding: 5px 0;
}
.comments p {
font-size: 14px;
color: #dbdbdb;
padding: 5px 0;
padding-bottom: 10px;
}
.comments_box {
width: 100%;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
.icon {
padding: 8px 16px 8px 0;
font-size: 24px;
}
.input_field {
width: 100%;
}
.input_field input {
width: 100%;
padding: 10px;
border: none !important;
outline: none;
}
.btn button {
background: transparent;
padding: 10px;
outline: none;
border: none;
color: #207be2;
font-weight: 600;
cursor: pointer;
}
Don’t Forget to Follow me on all Social Network,
Facebook Page: https://www.facebook.com/codingbd816
LinkedIn: https://www.linkedin.com/in/sajjat8383/
Instagram: https://www.instagram.com/codingbd/
GitHub: https://github.com/cgsaleh8383
You can see CSS Responsive CARD Hover Effects