-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
97 lines (86 loc) · 4.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Description" content="About Josh Curry" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<title>Josh Curry - About</title>
</head>
<body>
<nav class="navbar navbar-expand-lg custom-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">Josh Curry</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="shop.html">Shop</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- About Section -->
<div class="container mt-5">
<h2 class="text-center mb-4">About Josh Curry</h2>
<!-- Introduction -->
<div class="row mb-4">
<div class="col-md-8 offset-md-2">
<p class="lead">Welcome to the official website of Josh Curry! Here, you'll get to know more about the
person behind the brand, including our values, journey, and goals.</p>
</div>
</div>
<!-- Mission Section -->
<div class="row mb-4">
<div class="col-md-10 offset-md-1">
<h3>Our Mission</h3>
<p>We aim to bring laughter and joy to people's lives through memes and awesome product suggestions.
Our mission is to create a world where everyone can find something that brings a smile to their
face.</p>
</div>
</div>
<!-- Background Section -->
<div class="row mb-4">
<div class="col-md-10 offset-md-1">
<h3>Background</h3>
<p>Josh has been dedicated to spreading positivity and humor for over a decade. With a background in
design and a passion for creativity, he decided to create a platform that showcases funny and
interesting products for everyone to enjoy.</p>
<p>Josh attended UQ, his favourite university in the world. However, half way through he dropped out of
law and took up his real passion: running. Now, Josh regularly runs a massive 10km and enjoys not
having to study for exams.</p>
</div>
</div>
<!-- Contact Information Section -->
<div class="row mb-4">
<div class="col-md-10 offset-md-1">
<h3>Contact Information</h3>
<p>Have questions or want to get in touch? Feel free to reach out! (Josh doesn't have much to do since
he stopped law)</p>
<ul class="list-unstyled">
<li><strong>Email:</strong> <a href="mailto:contact@joshcurry.com">contact@joshcurry.com</a></li>
<li><strong>Phone:</strong> (123) 456-7890</li>
<li><strong>Social:</strong> Follow us on <a href="#">Twitter</a>, <a href="#">Instagram</a>, and <a
href="#">Facebook</a>.</li>
</ul>
</div>
</div>
<div class="text-center custom-div p-4">
<h2>Important note: This entire website is a joke and the email is fake and the phone number is also fake.
</h2>
<h1>Just to be clear:</h1>
<h1>THIS IS A JOKE</h1>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/js/bootstrap.min.js"></script>
</body>
</html>