Profile page html css

Содержание
  1. Create User Profile Page Design Using HTML Code
  2. User Profile Page Html Code:-
  3. User Profile Page Css Code:-
  4. 32 Bootstrap Profiles
  5. Related Articles
  6. Author
  7. Links
  8. Made with
  9. About a code
  10. Bootstrap 5 Profile Card
  11. Author
  12. Links
  13. Made with
  14. About a code
  15. Bootstrap 5 Simple User Profile
  16. Author
  17. Links
  18. Made with
  19. About a code
  20. Bootstrap 5 User Social Profile
  21. Author
  22. Links
  23. Made with
  24. About a code
  25. Bootstrap 5 Edit User Profile Template
  26. Author
  27. Links
  28. Made with
  29. About a code
  30. Bootstrap 5 User Profile
  31. Author
  32. Links
  33. Made with
  34. About a code
  35. Bootstrap 4 Profile Card
  36. Author
  37. Links
  38. Made with
  39. About a code
  40. Bootstrap Single Advisor Profile
  41. Author
  42. Links
  43. Made with
  44. About a code
  45. Bootstrap 4 Detailed User Profile
  46. Author
  47. Links
  48. Made with
  49. About a code
  50. Bootstrap 4 Neomorphism Detailed Profile
  51. Author
  52. Links
  53. Made with
  54. About a code
  55. Bootstrap 5 User Profile
  56. Author
  57. Links
  58. Made with
  59. About a code
  60. Bootstrap 5 Sidebar User Profile
  61. Author
  62. Links
  63. Made with
  64. About a code
  65. Bootstrap 5 User Profile Card with Buttons
  66. Author
  67. Links
  68. Made with
  69. About a code
  70. Profile with Data and Skills
  71. Author
  72. Links
  73. Made with
  74. About a code
  75. Bootstrap About Me
  76. Author
  77. Links
  78. Made with
  79. About a code
  80. Bootstrap 4 Single Listing
  81. Author
  82. Links
  83. Made with
  84. About a code
  85. Bootstrap 4 Social Profile
  86. Author
  87. Links
  88. Made with
  89. About a code
  90. Bootstrap 4 User Profile Sidebar
  91. Author
  92. Links
  93. Made with
  94. About a code
  95. Bootstrap 4 Social Profile
  96. Author
  97. Links
  98. Made with
  99. About a code
  100. Bootstrap 4 Individual User Profile
  101. Author
  102. Links
  103. Made with
  104. About a code
  105. Bootstrap Profile Contacts
  106. Author
  107. Links
  108. Made with
  109. About a code
  110. Bootstrap Profile Page
  111. Author
  112. Links
  113. Made with
  114. About a code
  115. Profile Card with Tabs
  116. Author
  117. Links
  118. Made with
  119. About a code
  120. Bootstrap Profile Page Design
  121. Author
  122. Links
  123. Made with
  124. About a code
  125. Bootstrap Profile Cards
  126. Author
  127. Links
  128. Made with
  129. About a code
  130. Bootstrap Profile Card Hover Effect
  131. Author
  132. Links
  133. Made with
  134. About a code
  135. Bootstrap Profile Page
  136. Author
  137. Links
  138. Made with
  139. About a code
  140. Bootstrap 4 Profile
  141. Author
  142. Links
  143. Made with
  144. About a code
  145. Bootstrap Profile Header Card
  146. Author
  147. Links
  148. Made with
  149. About a code
  150. Bootstrap 4 Seller Profile Cards
  151. Author
  152. Links
  153. Made with
  154. About a code
  155. Bootstrap Media Profile
  156. Author
  157. Links
  158. Made with
  159. About a code
  160. Bootstrap Profile Card Accordion Menu
  161. Author

Create User Profile Page Design Using HTML Code

Hey Guys, Welcome To the Codewithrandom Blog, In today’s blog, we are going to see how to create a User Profile Page Design using HTML Code. A User Profile Page Design is a good practice for learning Html Css, especially for beginners. Here we add a user image with a name and short intro and followers and followings and lastly the follow button. These are going to be done with HTML and CSS Code. So, Let’s Begin Our User Profile Page Design Project By Adding The Source Codes. For That, First, We Are Using The Html Code.

User Profile Page Html Code:-

 

Gordon Ramsay

Master Chef

2.4M

Fans

202

Followings

552

Posts

Follow

Here We first create a four div class namely card , card_background_img , card_profile_img, user-details for making of card, image for the background, profile picture, and lastly the user details. Then Inside of div class, we were adding the contents that needs to be done with the profile card. Each content has a specific div class with a separate name in order to make some changes on specific elements using the CSS. And lastly, we are adding a button property for the following section. So we have added the HTML tags and Their contents, Now it’s time to make it attractive and user profile card by adding the CSS code.

Читайте также:  Задача знак числа питон решение

User Profile Page Css Code:-

In the first step of CSS, We are setting the margin and padding values to zero with the box-sizing to border-box. and in the body section, we are fixing the alignment of text to center with a background color for the card. Now, We are adding color, font family, and size properties to the contents like heading, sub-heading, following, and followers of the user profile card. here the contents are in h3 and p. The code for the above explanation is given down.

* < margin: 0; padding: 0; box-sizing: border-box; >body < background-color: #e1e7ed; text-align: center; >h3 < font-size: 18px; font-weight: 500; color: #33363b; >p < font-size: 14px; color: #868d9b; >.card < width: 360px; height: auto; background-color: #ffffff; margin: 0 auto; margin-top: 80px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15); >.card_profile_img < width: 120px; height: 120px; background-color: #868d9b; background: url("https://source.unsplash.com/7Sz71zuuW4k"); background-repeat: no-repeat; background-size: cover; background-position: center; border: 2px solid #ffffff; border-radius: 120px; margin: 0 auto; margin-top: -60px; >.card_background_img < width: 100%; height: 180px; background-color: #e1e7ed; background: url("https://source.unsplash.com/9wg5jCEPBsw"); background-repeat: no-repeat; background-size: cover; background-position: center; >.user_details p < margin-bottom: 20px; margin-top: -5px; >.user_details h3 < margin-top: 10px; >.card_count < padding: 30px; border-top: 1px solid #dde1e7; >.count < display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; >.count p < margin-top: -10px; >.btn

Now in the further upcoming steps, the code is for making the card and fixing the contents properly in it. The contents were called by specific div class name and inserting the common properties like , width, height , display , margin , padding , font-size , font-color, weight etc. in it to make it attractive and fitted to the card sizes. Additionally the background properties like BG repeat , BG size and BG position for make a good-looking attractive background image and also some box shadow properties were added. For alignment of contents we just using flex box items , top and bottom and then margin and padding with top , right properties of it.

.card < width: 360px; height: auto; background-color: #ffffff; margin: 0 auto; margin-top: 80px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15); >.card_profile_img < width: 120px; height: 120px; background-color: #868d9b; background: url("https://source.unsplash.com/7Sz71zuuW4k"); background-repeat: no-repeat; background-size: cover; background-position: center; border: 2px solid #ffffff; border-radius: 120px; margin: 0 auto; margin-top: -60px; >.card_background_img < width: 100%; height: 180px; background-color: #e1e7ed; background: url("https://source.unsplash.com/9wg5jCEPBsw"); background-repeat: no-repeat; background-size: cover; background-position: center; >.user_details p < margin-bottom: 20px; margin-top: -5px; >.user_details h3 < margin-top: 10px; >.card_count < padding: 30px; border-top: 1px solid #dde1e7; >.count < display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; >.count p

Now the last step we do is adding a button to complete the user profile card, For that we calling out the button class and adding width and height for button size , background color , border with border radius , font-size , weight , padding , text align and cursor. After implementing this properties the button would be looks attractive and responsive. The code for the above ones is here.

Now We have completed adding the CSS code and Hence We came to the end of this project but make sure that you view the project output in the below Output Section. Now We have Successfully created our User Profile Page Design Using HTML and CSS Code. You can use this project for your personnel needs and the respective lines of code are given with the code pen link mentioned below. If you find out this Blog helpful, then make sure to search Codewithrandom on Google for Front End Projects with Source codes and make sure to Follow the Code with Random Instagram page. WRITTEN BY — Ragunathan S

Читайте также:  Handle all exceptions java

Источник

32 Bootstrap Profiles

Collection of free Bootstrap user profile page and card code examples. Update of September 2020 Collection. 16 new items.

Demo image: Bootstrap 5 Profile Card with Animation

  1. CSS Profile Cards

Author

Made with

About a code

Bootstrap 5 Profile Card

Bootstrap 5 profile card with animation.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 Simple User Profile Cards Using Glassmorphism

Author

Made with

About a code

Bootstrap 5 Simple User Profile

Bootstrap 5 simple user profile cards using glassmorphism.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 User Social Profile with Transition Effect

Author

Made with

About a code

Bootstrap 5 User Social Profile

Bootstrap 5 user social profile with transition effect.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 Edit User Profile Template

Author

Made with

About a code

Bootstrap 5 Edit User Profile Template

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 User Profile

Author

Made with

About a code

Bootstrap 5 User Profile

Bootstrap 5 user profile with statistics.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Profile Card Template with Hover

Author

Made with

About a code

Bootstrap 4 Profile Card

Bootstrap 4 profile card template with hover.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Single Advisor Profile

Author

Made with

About a code

Bootstrap Single Advisor Profile

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Detailed User Profile with Social Icons

Author

Made with

About a code

Bootstrap 4 Detailed User Profile

Bootstrap 4 detailed user profile with social icons.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 neomorphism detailed profile with social icons

Author

Made with

About a code

Bootstrap 4 Neomorphism Detailed Profile

Bootstrap 4 neomorphism detailed profile with social icons.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 User Profile

Author

Made with

About a code

Bootstrap 5 User Profile

Bootstrap 5 user profile with social icons animation.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 5 Sidebar User Profile

Author

Made with

About a code

Bootstrap 5 Sidebar User Profile

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Читайте также:  Анимация появления блока css при загрузке

Demo image: Bootstrap 5 User Profile Card with Buttons

Author

Made with

About a code

Bootstrap 5 User Profile Card with Buttons

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Profile with Data and Skills

Author

Made with

About a code

Profile with Data and Skills

Bootstrap profile with data and skills.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap About Me

Author

Made with

About a code

Bootstrap About Me

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Single Listing

Author

Made with

About a code

Bootstrap 4 Single Listing

Bootstrap 4 single listing of items with profiles.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Single Listing

Author

Made with

About a code

Bootstrap 4 Social Profile

Bootstrap 4 social profile with social icons on hover effect.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 User Profile Sidebar

Author

Made with

About a code

Bootstrap 4 User Profile Sidebar

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Social Profile

Author

Made with

About a code

Bootstrap 4 Social Profile

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Individual User Profile

Author

Made with

About a code

Bootstrap 4 Individual User Profile

Bootstrap 4 individual user profile on a social network.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Contacts

Author

Made with

About a code

Bootstrap Profile Contacts

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Page

Author

Made with

About a code

Bootstrap Profile Page

Easily create a profile widget using Bootstrap 4. This example uses mostly Bootstrap utility classes to achieve the desired result.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Author

Made with

About a code

Profile Card with Tabs

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Page Design

Author

Made with

About a code

Bootstrap Profile Page Design

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Cards

Author

Made with

About a code

Bootstrap Profile Cards

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Author

Made with

About a code

Bootstrap Profile Card Hover Effect

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Page

Author

Made with

About a code

Bootstrap Profile Page

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Dependencies: bootstrap-material-design.css, font-awesome.css, material-kit.css, jquery.js, popper.js, bootstrap-material-design.js»

Demo image: Bootstrap 4 Profile

Author

Made with

About a code

Bootstrap 4 Profile

Profile with timeline posts.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Profile Header Card

Author

Made with

About a code

Bootstrap Profile Header Card

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap 4 Seller Profile Cards

Author

Made with

About a code

Bootstrap 4 Seller Profile Cards

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Demo image: Bootstrap Media Profile

Author

Made with

About a code

Bootstrap Media Profile

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Author

Made with

About a code

Bootstrap Profile Card Accordion Menu

A simple bootstrap profile card with accordion functionality. The accordion contains a simple profile drop down, a social drop down and a contact drop down.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Dependencies: scojs.css, jquery.js

Demo image: User Profile Biograph

Author

Источник

Оцените статью