-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlandingpage.html
More file actions
39 lines (39 loc) · 1.06 KB
/
landingpage.html
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Nickel Testing Kit Info</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
font-family: sans-serif;
text-align: center;
padding: 2em;
background-color: #f2f2f2;
}
h1 {
color: #003366;
}
a {
display: block;
margin: 1em auto;
padding: 1em;
width: fit-content;
color: white;
background-color: #0073e6;
text-decoration: none;
border-radius: 8px;
}
a:hover {
background-color: #005bb5;
}
</style>
</head>
<body>
<h1>Ninja Nigel's Nickel Testing Solution</h1>
<p>Click below to download important information:</p>
<a href="https://raw.githubusercontent.com/yourusername/reponame/main/instructions.pdf" target="_blank">📝 Instructions PDF</a>
<a href="https://raw.githubusercontent.com/yourusername/reponame/main/sds.pdf" target="_blank">⚠️ Safety Data Sheet (SDS)</a>
<p style="margin-top:2em;">Updated: July 2025</p>
</body>
</html>