-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuccess.html
More file actions
29 lines (28 loc) · 997 Bytes
/
Copy pathsuccess.html
File metadata and controls
29 lines (28 loc) · 997 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Sent</title>
<link rel="stylesheet" href="assets\style\style.css">
</head>
<body>
<header class="sticky-header">
<div class="header-left">
<h1>Cyber Jeff</h1>
</div>
</header>
<main>
<section class="message-section">
<div class="message-box">
<h2>Message Sent Successfully!</h2>
<p class="message-paragraph">
Thank you for reaching out! CyberJeff has received your message and will respond shortly. Speak soon!
</p>
<img src="assets\images\no-hand-jeff.webp" alt="Cyber Jeff Pointing at you but mising his pointing arm" class="message-image">
<a href="index.html" class="return-button">Return to Home</a>
</div>
</section>
</main>
</body>
</html>