-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage_sent.html
55 lines (50 loc) · 2.12 KB
/
message_sent.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Animate on scroll CDN link -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/debc4afe80.js" crossorigin="anonymous"></script>
<!-- My CSS -->
<link rel="stylesheet" href="css/style.css">
<title>Message Sent</title>
</head>
<body>
<section>
<div class="container message_sent">
<div class="row pt-5">
<div class="col-12 pt-5">
<h1 class="text-center">Message sent<i class="fas fa-paper-plane message_sent_icon"></i></h1>
<p class="text-center mb-2 mt-4">Thank you for your message.</p>
<p class="skype_text mb-2 text-center">I aim to answer all messages as quickly as possible. Don't want to
wait?
Feel free to drop me a message via Skype by clicking the Skype icon here: <a
href="https://join.skype.com/invite/ndruMu7qVuKZ" target="_blank"><i
class="fab fa-skype skype_icon"></i></a>
</p>
<div class="row">
<div class="col text-center">
<button class="btn text-capitalize"><a href="https://stephens-portfolio.com/">Return To
Website</a></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<!-- Animate on scroll CDN link -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- My JS File -->
<script src="/js/app.js"></script>
</body>
</html>