Modern and Responsive About Me Page using HTML & CSS

Modern and Responsive About Me Page using HTML & CSS

Hello developers, today in this blog, you'll learn how to create a Modern and Responsive About Me Page using HTML & CSS.

An About Me Page is like a profile card. An about me page should consist of what service you provide and some content about you. An about me page is created to get some clients online, that is by seeing this page the client would approach them easily.

In an About Me Page, there should be brief information about you with your profile picture, your name with designation, the contact information, and a description of you.

In this blog (Modern and Responsive About Me Page), there is a profile icon with the name and designation of a person, contact information, welcome message. There are two buttons, as resume/cv where the client or the other person can see the complete resume/cv and the GitHub page of that person, and there is a description of the person.

This Modern and Responsive About Me Page is made fully responsive, by using CSS media query property. When you open this About Me Page on pc, the cards are aligned horizontally but when you open it on small devices, each card is aligned vertically.

The source code of this Modern and Responsive About Me Page using HTML & CSS is given below, if you want the source code of this program, you can copy it. You can use this Modern and Responsive About Me Page using HTML & CSS on your projects.

Modern and Responsive About Me Page using HTML & CSS [Source Code]

To make this website, you would like to make two files: an HTML file & a CSS file. First, create an HTML file with the name of index.html and remember, you have to create a file with a .html extension.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Me Profile card || Learning Robo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
</head>
<body>
<div class = "about-wrapper">
<div class = "about-left">
<div class = "about-left-content">
<div>
<div class = "shadow">
<div class = "about-img">
<img src = "https://cdn.pixabay.com/photo/2018/11/13/21/43/instagram-3814049__340.png" alt = "about image">
</div>
</div>
<h2>Learning Robo</h2>
<h3>Web developer</h3>
</div>
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
CSS provides style to an HTML page. To make the page attractive and page responsive create a CSS file with the name style.css and remember that you have to make a file with a .css extension.

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
}
.about-wrapper{
height: 100vh;
}
.about-left{
background-color: #21D4FD;
background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color:#fff
}
.about-left-content > div{
background: #12192c;
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
We hope you would like this Modern and Responsive About Me Page using HTML & CSS.

Thank you for reading our blog. If you face any problem in creating this Modern and Responsive About Me Page using HTML & CSS, then contact us or comment us. We’ll try to provide a solution to your problem as soon as possible.

Thank you
Learning robo team

إرسال تعليق

Thank you
Learning robo team

Post a Comment (0)

أحدث أقدم
Learning Robo says...
code copied
Welcome