-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank_you.html
56 lines (47 loc) · 1.92 KB
/
thank_you.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Wally - Send Love</title>
<link rel="stylesheet" href="layout.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<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=Freckle+Face&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="navigation">
<div class="logoText">
<a href="home.html">The Wally</a>
</div>
<div class="navigationButtons">
<a href="home.html">home</a>
<a href="about_me.html">about me</a>
<a href="my_dad.html">my dad</a>
<a href="my_papa.html">my papa</a>
<a href="send_love.html">send love</a>
</div>
</div>
<!-- unique content starts below -->
<header>
<h1>Thank You!</h1>
</header>
<div class="thanks_message">
<p>My secret admirer,</p>
<p>I hope it was not a stingy, half-assed praise!</p>
<p>Now, you may go back and check out my other beauty shots.</p>
</div>
<!-- unique content ends -->
<div class="social">
<a href="https://www.instagram.com/michaelanart/" class="fa fa-instagram"></a>
<a href="https://twitter.com/MichaelAnArt" class="fa fa-twitter"></a>
<a href="https://www.facebook.com/michaelanart" class="fa fa-facebook"></a>
<a href="https://www.youtube.com/channel/UC0KbLBNJdE7UrmFQTkrznSg" class="fa fa-youtube"></a>
</div>
<div class="footer">
<p>Copyright © 2022 Wally. All Rights Reserved</p>
</div>
</body>
</html>