-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpageTwo.html
More file actions
74 lines (71 loc) · 3.21 KB
/
pageTwo.html
File metadata and controls
74 lines (71 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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">
<script defer src="script.js"></script>
</head>
<body>
<header>
<div class="logo-section">
<img src="logo.jpg" alt="Company Logo">
</div>
<nav class="navbar">
<ul>
<li><a href="pageOne.html">Home</a></li>
<li><a href="pageTwo.html">About</a></li>
<li><a href="pageThree.html">Contact</a></li>
<li><a href="pageFour.html">Services</a></li>
<li><a href="pageFive.html">Portfolio</a></li>
<li><a href="pageSix.html">Blog</a></li>
</ul>
</nav>
</header>
<main>
<!-- About Us Section -->
<section class="about-section">
<div class="content">
<h2>About Us</h2>
<p>Welcome to <strong>The SHOE STORE</strong>, where style meets comfort! We are dedicated to providing high-quality footwear for every occasion. Our collection includes dress shoes, athletic shoes, and sneakers, crafted with care and attention to detail to meet your needs and preferences.</p>
<p>Founded with a passion for fashion and functionality, we believe that the right pair of shoes can elevate your confidence and enhance your day. Whether you're preparing for a formal event, hitting the gym, or enjoying a casual outing, we have the perfect shoes for you.</p>
<p>At <strong>The SHOE STORE</strong>, customer satisfaction is our top priority. Our team is here to help you find the ideal fit and style that suits you best. Thank you for choosing us for your footwear needs!</p>
</div>
</section>
<!-- Mission Statement Section -->
<section class="mission-section">
<h3>Our Mission</h3>
<p>To provide the perfect balance of style, comfort, and quality in footwear while maintaining a commitment to sustainability and exceptional customer service.</p>
</section>
<!-- Our Team Section -->
<section class="team-section">
<h3>Meet Our Team</h3>
<div class="team-container">
<div class="team-card">
<img src="ceo.jpg" alt="CEO">
<h4>Jane Doe</h4>
<p>CEO & Founder</p>
</div>
<div class="team-card">
<img src="designer.jpg" alt="Designer">
<h4>John Smith</h4>
<p>Head Designer</p>
</div>
<div class="team-card">
<img src="manager.jpg" alt="Manager">
<h4>Emily Taylor</h4>
<p>Operations Manager</p>
</div>
</div>
</section>
</main>
<footer>
<ul class="social-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>