-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
115 lines (109 loc) · 4.15 KB
/
about.html
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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="about.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logoContent">
<img src="./images/Logo.png" alt="Audi Logo">
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="#">Products</a>
<a href="#">Contact Us</a>
</div>
</nav>
</header>
<section class="about-section">
<h1>About Audi</h1>
<p>Audi is a renowned automobile manufacturer that specializes in high-performance luxury vehicles. Founded in 1909, Audi has established itself as a leader in innovation, design, and technology.</p>
<div class="about-images">
<img src="./images/audi-history.jpg" alt="Audi History" class="about-image">
<img src="./images/audi-innovation.jpg" alt="Audi Innovation" class="about-image">
<img src="./images/audi-future.jpg" alt="Audi Future" class="about-image">
</div>
<div class="about-description">
<h2>Our Vision</h2>
<p>At Audi, we strive to create a sustainable future through advanced technology and electric mobility. Our commitment to quality and performance ensures that we deliver the best driving experience.</p>
</div>
<div class="mission-section">
<h2>Our Mission</h2>
<p>To inspire and engage our customers through innovative solutions and unparalleled service. We aim to lead the automotive industry in sustainability and performance.</p>
</div>
<div class="values-section">
<h2>Core Values</h2>
<ul>
<li>Innovation</li>
<li>Quality</li>
<li>Sustainability</li>
<li>Diversity & Inclusion</li>
<li>Customer Centricity</li>
</ul>
</div>
</section>
<footer class="foot">
<div class="end">
<ul class="explore">
<h3>Explore</h3>
<li>Models</li>
<li>Audi Sport</li>
<li>What is e-tron®</li>
<li>SUV Models</li>
<li>Audi Experience</li>
<li>Inclusion & Diversity</li>
<li>Electric Models</li>
<li>Inside Audi</li>
<li>Subscribe to model updates</li>
</ul>
<ul class="shop">
<h3>Shop</h3>
<li>Special Offers</li>
<li>Find a dealer</li>
<li>New inventory</li>
<li>Pre-owned inventory</li>
<li>Certified pre-owned</li>
</ul>
<ul class="buy">
<h3>Buy</h3>
<li>Contact dealer</li>
<li>Trade-in value</li>
<li>Leasing</li>
<li>Financing</li>
<li>Apply for financing</li>
</ul>
<ul class="own">
<h3>Owner</h3>
<li>myAudi</li>
<li>About myAudi</li>
<li>Audi Financial Services</li>
<li>Audi collection store</li>
<li>Accessories</li>
<li>Audi connect</li>
<li>Service and Parts</li>
<li>Roadside Assistance</li>
<li>In-Use Verification Program</li>
</ul>
<ul class="support">
<h3>Support</h3>
<li>Contact Us</li>
<li>Help</li>
<li>About Audi</li>
<li>Careers</li>
<li>Newsroom</li>
<li>Emissions Modification Lookup</li>
<li>Accessibility</li>
<li>Recalls</li>
<li>INDUSTRY GUIDANCE FOR EMERGENCY RESPONDERS</li>
</ul>
</div>
</footer>
<script src="/script.js"></script>
</body>
</html>