Simple Profile Card UI Design using HTML and CSS

Simple Profile Card UI Design using HTML and CSS

In this article, you will learn how to create a simple profile card Ui design using HTML and CSS code. In the meantime, I have made a profile card design using bootstrap. Now is the time to create a beautiful profile card using only HTML and CSS.

If you are a beginner and want to create an HTML CSS card design then this article will help you. Here I have made this design for beginners only relying on HTML and CSS. Many times we see such profile designs in different applications or websites.Β  Along with this, various types of information, social media links, etc. are given. This type of CSS profile card design is also used in many blogs or free-lensing websites. PitangoUXΒ is an end-to-end UX/UI service agency.

I have already shared the design of a Responsive Profile Card with you. However, this design is not Responsive it is just to create an idea about your profile card. If you want to create a Responsive Profile Card using HTML and CSS, you can try my previous design.

Below I have given a live demo that will help you to know how this profile works.

See the Pen
Responsive Profile Card UI
by Foolish Developer (@fghty)
on CodePen.

As you saw in the demo above here I first designed a web page. I made a small box on it. I have added images, social-media-icons, and various texts to this box. A shadow has been used here which has made this card design a bit brighter than the webpage.

First of all, I used a profile image here then gave the title and some basic description. Then here are the links on various social media for contact and two buttons at the bottom. All in all, it is a very simple and beautiful profile card design. You can easily make this design if you have a basic idea of HTML and CSS relationships.

Responsive Profile Card UI Design using HTML and CSS

Below I have shared the complete tutorial on how I designed this Html profile card. If you are a beginner then you must follow the tutorial below. Use the download button below the article to download the source code.

Step 1:Β Design the web page

Β I designed the webpage using a small amount of CSS code below. Originally set the background color of the webpage here # d5e1ef and gave the font family.

* {
Β  Β  margin: 0;
Β  Β  padding: 0;
Β  Β  box-sizing: border-box;
}
body {
Β  Β  font-family: Arial, Helvetica, sans-serif;
Β  Β  background: #d5e1ef;
}
Design the web page

Step 2:Β Create the basic structure of the profile card

I have created a box on the web page using the following HTML and CSS code. The width of this box is 340px and the min-height is 100px. Here I have used white as the background color and box-shadow. The box-shadow helped create a black shadow around this card which made it more attractive and brighter.

Β  <main>
Β  </main>
main {
Β  Β  width: 340px;
Β  Β  overflow: hidden;
Β  Β  background-color: #fdfcfc;
Β  Β  font-size: 16px;
Β  Β  line-height: 22px;
Β  Β  color: #000;
Β  Β  border-radius: 7px;
Β  Β  box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.505);
Β  Β  margin: 50px auto;
}
Create the basic structure of the profile card

Step 3:Β Add a profile image to the card (more…)

Continue ReadingSimple Profile Card UI Design using HTML and CSS