-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 1.55 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WWCC Status Checker</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #4CAF50;
padding: 20px;
}
header h1 {
color: white;
margin: 0;
}
main {
max-width: 800px;
margin: 40px auto;
text-align: center;
}
main p {
font-size: 18px;
}
.button {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 12px 24px;
text-decoration: none;
border-radius: 4px;
}
footer {
background-color: #4CAF50;
padding: 20px;
text-align: center;
}
footer p {
color: white;
margin: 0;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>WWCC Status Checker</h1>
</header>
<main>
<p>An easy-to-use solution for checking WWCC card status in Australia, ensuring organisations remain compliant.</p>
<a href="https://github.com/TechedJack/WWCCStatusChecker" class="button">View on GitHub</a>
<h2>Contact Me</h2>
<p>If you have any questions or suggestions, feel free to reach out:</p>
<a href="https://twitter.com/TechedJack" class="button" target="_blank" rel="noopener noreferrer">Contact Me on Twitter</a>
</main>
<footer>
<p>© 2023 Jack Moore. All rights reserved.</p>
</footer>
</body>
</html>