generated from Code-Institute-Org/gitpod-full-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
support.html
54 lines (50 loc) · 2.33 KB
/
support.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
<!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>Support Ukraine</title>
<meta name="description" content="Support my game by donating to Ukraine" />
<meta name="keywords" content="Ukraine, No War, Support, Slava Ukraini, Kyiv, Support Ukraine now, loved">
<meta name="author" content="cla-cif">
<link rel="stylesheet" href="assets/css/support.css">
<link href="assets/icons/support-favicon.ico" rel="icon" type="image/x-icon" />
<link href="assets/icons/apple-touch-icon-ua.png" rel="apple-touch-icon" type="image/x-icon" />
<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=Smooch+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
</head>
<body>
<!--the header only contains the home icon which links to the index page-->
<header><span id="home"><a href="index.html" target="_blank" aria-label="Home: back to homepage - opens in a new window"><i class="fa fa-home fa-2xs"></i>Home</a></span></header>
<main>
<!--the main section contains a paragraph with a message for the user-->
<div id="par-wrapper">
<div>
<h1>Hello, thank you for clicking!</h1>
</div>
<div>
<p>This is my first JavaScript project. If you like it, I'd really appreciate your support.<br>But instead
of the usual "Buy Me a Coffee", I'd rather ask you to <strong>support my loved ones in Ukraine.</strong>
</p>
</div>
<div>
<p>You will find many ways to support, just chose the ones that best fit your capabilities!
</p>
</div>
<div id="support" itemscope itemtype="https://supportukrainenow.org/">
<a href="https://supportukrainenow.org/" target="_blank" itemprop="url"
aria-label="Support Ukraine now: link opens in a new window">Support Ukraine now</a>
</div>
</div>
</main>
<!--footer is the same as in the index page-->
<footer>
<p id="footer-par">Created by cla-cif (ASK) 2022</p>
</footer>
</body>
</html>