-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.html
39 lines (37 loc) · 1.62 KB
/
thanks.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<!--TITLE IS DISPLAYED IN BROWSER TAB-->
<title>Thank you</title>
<!--THE META DESCRIPTION INFO IS USED IN SEARCH ENGINES (according to developer.mozilla.org)-->
<meta name="author" content="Kim Wolf">
<meta name="description" content="Sew Bug Tips aims to provide sewing information and tips to beginners.">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--ADD 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=Cookie&family=Lato:ital@0;1&display=swap" rel="stylesheet">
<!--ADDS FAVICON TO TAB-->
<link rel="icon" type="image/jpg" href="images/bug.jpeg">
<!--ADDS FONT AWESOME CODE-->
<script src="https://kit.fontawesome.com/fab5d2891a.js" crossorigin="anonymous"></script>
<!--ADDS STYLES/CSS TO SITE-->
<link rel="stylesheet" href="styles/main.css">
<!--ADDS JAVASCRIPT CODE-->
<script src="script.js" defer></script>
</head>
<body onload="javascript:thanksFunction()">
<section id="thanks">
<div>
<p id="thanksText"></p>
<div class="thanks-800">
<img src="images/sewing-machine-bw-800.jpg"alt="Sewing machine needle"/>
</div>
<div class="thanks-480">
<img src="images/sewing-machine-bw-480.jpg"alt="Sewing machine needle"/>
</div>
</div>
</section>
</body>
</html>