-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
72 lines (66 loc) · 2.34 KB
/
about.html
File metadata and controls
72 lines (66 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>About Us – Goobie Woobie Inc</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<nav class="navbar container">
<a href="index.html" class="logo">Goobie Woobie Inc</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="companies.html">Companies</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="container">
<section id="history">
<h2>Our Story</h2>
<p>Goobie Woobie Inc was founded in 2022 by Aiden O, starting as a small tech startup. Over the decades, we've expanded into a diversified conglomerate spanning multiple industries.</p>
</section>
<section id="vision">
<h2>Vision & Mission</h2>
<p>Our mission is to create value through innovation and integrity, driving sustainable growth across all sectors we operate in.</p>
<ul>
<li><strong>Innovation:</strong> Embracing change and creativity.</li>
<li><strong>Integrity:</strong> Upholding transparency and ethics.</li>
<li><strong>Excellence:</strong> Striving for the highest standards.</li>
</ul>
</section>
<section id="leadership">
<h2>Leadership Team</h2>
<p><strong>Aiden O, CEO:</strong> Leads global strategy with 20+ years in tech.</p>
</section>
</main>
</section>
<section id="Coleadership">
<h2>Coleadership Team</h2>
<p><strong>Lincoln R, CLS:</strong> Coleads our company for 10+ years in business.</p>
</section>
</main>
</section>
<section id="Goobertons">
<h2>Goobertons restaurant founder</h2>
<p><strong>Tony F, GRL:</strong> Founder and leader of goobertons restaurant.</p>
</section>
</main>
<footer class="footer">
<p>© 2025 Goobie Woobie Inc. All rights reserved.</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.body.classList.add('page-loaded');
});
window.addEventListener('beforeunload', () => {
document.body.classList.add('page-unloading');
});
</script>
</body>
</html>