-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (74 loc) · 2.64 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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/logo.png">
<link rel="stylesheet" href="css//styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function (e) {
if (!e.target.matches('.dropbtn')) {
var myDropdown = document.getElementById("myDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
<title>UMSKT - Home</title>
</head>
<body>
<ul id="ul2">
<div id="half">
<li><a href="./index.html" id='home'>
<table>
<tr>
<th><img src='images/logo.png' width="30px"></th>
<th>UMSKT</th>
</tr>
</table>
</a></li>
<div id="right">
<li><a href="./download.html">Downloads</a></li>
<li><a href="./documentation.html">Documentation</a></li>
<li><a href="./contact.html">Contact</a></li>
</div>
<li id="right2"><a class="dropbtn" onclick="myFunction()">Menu <i class="fa fa-bars" aria-hidden="true"></i></a>
</li>
</div>
</ul>
<div class="dropdown-content" id="myDropdown">
<a href="./download.html">Downloads</a>
<a href="./documentation.html">Documentation</a>
<a href="./contact.html">Contact</a>
</div>
<div id="banner"><img src="images/bg.jpeg" id="bg">
<h1 class="centered">Welcome to the UMSKT Project</h1>
</div>
<div id="content">
<h1>What is UMSKT?</h1>
<p>UMSKT is a project for researching and experimenting with pre-2012 Microsoft product activation. For more
information, we recommend seeing the more-updated <a href="https://github.com/UMSKT/UMSKT">README.md</a>.</p>
<hr />
<h1>How do I download it?</h1>
<p>Click <a href='./download.html'>here</a> to find the downloads.</p>
<br>
<br>
<br>
<footer>
<hr>
<p>Copyright <b>2019-2023</b> UMSKT Contributors</p>
<p>Website designed by <a href='https://github.com/techguy16'>techguy16</a></p>
<p>Website maintained by <a href='https://github.com/techguy16'>techguy16</a> and <a
href='https://github.com/thepwrtank18'>TheTank20</a></p>
</footer>
</div>
</body>
</html>