-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
129 lines (123 loc) · 5.96 KB
/
Copy pathabout.html
File metadata and controls
129 lines (123 loc) · 5.96 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Html & bootstrap</title>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap" rel="stylesheet">
<!-- custom styles -->
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar bg-dark navbar-expand-lg" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Spiffy Suits</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">
<li class="nav-item">
<a class="nav-link " href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#suits">Suits</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./about.html" aria-current="page">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- about grid -->
<main class="container-lg" id="suits">
<h1 class="text-center my-4">About Us</h1>
<div class="row g-2 m-5">
<div class="col-12 col-sm-12 col-md-6">
<div class="shadow-sm p-2">
<img src="./images/fitted-athletic-sport-coat-suit.png" alt="" class="w-100">
</div>
</div>
<div class="col-12 col-sm-12 col-md-6">
<div class="shadow-sm p-2">
<h4>Spiffy Suits redefines elegance with bespoke designer suits tailored to perfection,
combining timeless sophistication with modern style.</h4>
<h4>Crafted from the finest fabrics, each Spiffy Suit is a masterpiece of craftsmanship,
ensuring you exude confidence on every occasion.</h4>
<h4>Elevate your wardrobe with Spiffy Suits, where luxury meets innovation for
those who demand nothing but the best.</h4>
</div>
</div>
</div>
<!-- contact and form -->
<h2 class="text-center my-4">Contact Us</h2>
<div class="row g-2 m-5">
<div class="col-12 col-sm-12 col-md-6">
<div class="shadow-sm p-2">
<div class="d-flex align-items-center gap-1 p-3">
<h5>Phone:</h5>
<h5>143-546-2344</h5>
</div>
<div class="d-flex align-items-center gap-1 p-3">
<h5>Email:</h5>
<h5>info@spiffysuits.com</h5>
</div>
<div class="d-flex align-items-center gap-1 p-3">
<h5>location:</h5>
<h5>New York City</h5>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6">
<div class="shadow-sm p-2">
<form>
<div class="mb-3">
<label for="exampleInputname1" class="form-label">Name</label>
<input type="name" class="form-control" id="exampleInputname1" aria-describedby="nameHelp">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</main>
<!-- footer -->
<footer class="bg-dark text-white py-5">
<div class="container">
<div class="row">
<div class="col-12 col-sm-6">
<div class="d-flex flex-column justify-content-between">
<p><a href="#" class="text-white">Privacy Policy</a></p>
<p><a href="#" class="text-white">Terms of Service</a></p>
<p><a href="#" class="text-white">Contact</a></p>
</div>
</div>
<div class="col-12 col-sm-6">
<p>© 2024 Spiffy Suits. All Rights Reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>