Sitemap

About us page using HTML and CSS

3 min readOct 3, 2024

--

Zoom image will be displayed
About us page using HTML and CSS
About us page using HTML and CSS

For more questions and answers visit our website at Frontend Interview Questions

Structure of an “About Us” Page

A typical “About Us” page includes several key elements:

  1. Introduction: A brief overview of the company or organization.
  2. Mission and Vision: Statements that reflect the company’s goals and values.
  3. Team Members: Information about key team members or staff.
  4. Contact Information: Details on how to get in touch or follow the company on social media.

Example: “About Us” Page

Let’s create a straightforward “About Us” page that incorporates these elements.

HTML Structure:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>About Us</h1>
</header>

<section class="intro">
<h2>Welcome to Our Company</h2>
<p>We are dedicated to providing the best services to our customers. Our team is committed to excellence and innovation.</p>
</section>
<section class="mission-vision">
<h2>Our…

--

--

Pravin M
Pravin M

Written by Pravin M

I am a frontend developer with 10+ years of experience Blog :- https://www.frontendinterviewquestions.com

No responses yet