-
Notifications
You must be signed in to change notification settings - Fork 1
/
trial.html
171 lines (148 loc) · 7 KB
/
trial.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Welcome to the Wonderful World of Pets!</title>
<link rel="stylesheet" href="style.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body><div class="container-fluid text-center">
<div class="row"> <nav
class="navbar navbar-expand-lg bg-body-tertiary"
style="background-color: #aad9fa"
>
<div class="container-fluid">
<a class="navbar-brand" href="#">Clawsome</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarScroll"
aria-controls="navbarScroll"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarScroll">
<ul
class="navbar-nav me-auto my-2 my-lg-0 navbar-nav-scroll"
style="--bs-scroll-height: 100px"
>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Contact Us
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Link</a>
</li>
</ul>
<form class="d-flex" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form>
</div>
</div>
</nav>
</div>
<div class="col"> <h1 style="font-size: 1.5em;">Get in Touch</h1></div>
</header>
</div>
<div class="row">
<div class="col-sm-2">AD</div>
<div class="col-sm-8"> <main>
<main style="padding: 20px; display: flex; flex-direction: column; align-items: center;">
<p><b>We'd love to hear from you! Feel free to reach out using the following methods or fill out the contact form below:</b></p>
<div style="display: flex; justify-content: space-around; width: 100%; max-width: 800px; margin: 20px 0; padding-right: 20px;">
<div style="text-align: center;">
<span class="material-symbols-outlined">mail</span>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div style="text-align: center;">
<span class="material-symbols-outlined">call</span>
<p>Phone: 123-456-7890</p>
</div>
</div>
<form action="#" method="post" style="width: 100%; max-width: 600px; margin: 20px 0; padding: 20px; background-color: #f5f5f5; border: 1px solid #ddd; border-radius: 4px;">
<label for="name" style="display: block; margin-bottom: 5px;">Name:</label>
<input type="text" id="name" name="name" required style="width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px;">
<label for="email" style="display: block; margin-bottom: 5px;">Email:</label>
<input type="email" id="email" name="email" required style="width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px;">
<label for="message" style="display: block; margin-bottom: 5px;">Message:</label>
<textarea id="message" name="message" rows="6" required style="width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px;"></textarea>
<button type="submit" style="width: 100%; padding: 10px; background-color: #333; color: white; border: none; border-radius: 4px;">Send Message</button>
</form>
</main></div>
<div class="col-sm-2">News</div>
</div>
<!-- Footer -->
<div class="row">
<footer class="bg-light text-center py-4">
<div class="container">
<div class="col-md-12">
<div class="newsletter" style="margin-top: 20px">
<h3>Subscribe to Our Newsletter</h3>
<form>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input
type="email"
class="form-control"
id="email"
aria-describedby="emailHelp"
placeholder="Enter email"
/>
</div>
<button type="submit" class="btn btn-primary">Subscribe</button>
</form>
</div>
<p>Team Members: Tracy, Reuben, Caroline, Jemimah, Linda A.</p>
<p>Contact us: [email protected]</p>
</div>
</div>
</div>
<p>© Claw<span style="color: rgb(255, 0, 106)">some</span> 2024</p></footer>
</div></div>
</div>
<!--
This script places a badge on your repl's full-browser view back to your repl's cover
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
teal, blue, blurple, magenta, pink!
-->
<script
src="https://replit.com/public/js/replit-badge-v2.js"
theme="dark"
position="bottom-right"
></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>