Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,23 @@ <h5>Nike Air Max</h5>
</div>
</section>

<section id="about-us" class="about-us-section">
<div class="container">
<h2>About Us</h2>
<p>
Welcome to Nike! We are a global brand that is dedicated to providing top-quality athletic footwear, apparel, and equipment for sports and fitness enthusiasts around the world. Since 1964, Nike has been committed to innovation, pushing the limits of design and functionality to inspire athletes and casual wearers alike.
</p>
<div class="mission">
<h3>Our Mission</h3>
<p>
Our mission is to bring inspiration and innovation to every athlete* in the world. We believe that if you have a body, you are an athlete.
</p>
</div>
</div>
</section>



<div class="footer">
<div class="links" id="link1">
<a href="https://www.nike.com/in/retail">find store</a><br>
Expand Down
35 changes: 35 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,41 @@ header i:hover,header #cart:hover{
text-align: center;

}
.about-us-section {
background-color: #f9f9f9;
padding: 50px 0;
text-align: center;
}

.about-us-section h2 {
font-size: 36px;
color: #111;
margin-bottom: 20px;
}

.about-us-section p {
font-size: 18px;
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}

.about-us-section .mission h3 {
font-size: 28px;
color: #111;
margin-bottom: 15px;
}

.about-us-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}





.footer{
white-space: nowrap;
width: 100%;
Expand Down