
- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursors
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS Advanced
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Media Types
- CSS - Paged Media
- CSS - Aural Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS3 - Rounded Corner
- CSS3 - Border Images
- CSS3 - Multi Background
- CSS3 - Color
- CSS3 - Gradients
- CSS3 - Shadow
- CSS3 - Text
- CSS3 - Web font
- CSS3 - 2d transform
- CSS3 - 3d transform
- CSS3 - Animation
- CSS3 - Multi columns
- CSS3 - User Interface
- CSS3 - Box Sizing
- CSS Responsive
- CSS - Responsive Web Design
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
How to create an about / about us page for website with CSS?
To create an about page, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> html { box-sizing: border-box; } body { font-family: monospace, serif, sans-serif; margin: 0px; padding: 0px; } h1 { text-align: center; background-color: rgb(108, 18, 131); color: white; padding-top: 40px; padding-bottom: 40px; margin-top: 0px; } .teamContainer { margin-left: 10%; } img { width: 100%; height: 200px; } *, *:before, *:after { box-sizing: inherit; } .teamColumn { display: inline-block; width: 300px; height: 400px; margin-bottom: 16px; padding: 0 8px; } @media screen and (max-width: 650px) { .teamColumn { display: block; } } .teamCard { background-color: rgb(162, 162, 255); text-align: center; font-size: 20px; } .personContainer { padding: 0 16px; } .personContainer::after, .teamContainer::after { content: ""; clear: both; display: table; } .Designation { color: rgb(15, 0, 100); font-weight: bolder; font-size: 20px; } .contact { border: none; outline: 0; display: inline-block; padding: 12px; color: white; font-weight: bolder; background-color: rgb(78, 0, 102); text-align: center; cursor: pointer; width: 100%; } .contact:hover { background-color: #555; } </style> </head> <body> <h1>About Us</h1> <div class="teamContainer"> <div class="teamColumn"> <div class="teamCard"> <img src="https://images.pexels.com/photos/839011/pexels-photo839011.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/> <div class="personContainer"> <h3>Jane Doe</h3> <p class="Designation">CTO</p> <p><button class="contact">Contact</button></p> </div> </div> </div> <div class="teamColumn"> <div class="teamCard"> <img src="https://images.pexels.com/photos/614810/pexels-photo614810.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/> <div class="personContainer"> <h3>Mike Ross</h3> <p class="Designation">Front End Developer</p> <p><button class="contact">Contact</button></p> </div> </div> </div> <div class="teamColumn"> <div class="teamCard"> <img src="https://images.pexels.com/photos/736716/pexels-photo736716.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/> <div class="personContainer"> <h3>John Doe</h3> <p class="Designation">FullStack Developer</p> <p><button class="contact">Contact</button></p> </div> </div> </div> </div> </body> </html>
Output
The above code will create the following output −
- Related Articles
- How to create a Phishing page of a website?
- How To Create Unique And Relevant Title Tags For Every Page On A Website
- How to create full-page tabs with CSS and JavaScript?
- How to create a full-page background image with CSS?
- How to create responsive "Meet The Team" page with CSS?
- How to create a "coming soon page" with CSS and JavaScript?
- Which is the Best Website to Learn About Digital Marketing?
- Explain About the Ease Of Maintenance With CSS
- How to create Favicon for your website?
- How to center your website horizontally with CSS?
- How to create a favicon for your website?
- How to create an image gallery with CSS
- How to create an avatar image with CSS?
- How to create an email newsletter with CSS?
- How to create an overlay effect with CSS?

Advertisements