-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
103 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,105 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>My GitHub Pages Site</title> | ||
</head> | ||
<body> | ||
<h1>Hello world!</h1> | ||
<p>Welcome to my GitHub Pages site!</p> | ||
</body> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Microsoft Activation Scripts (MAS)</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
header { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 20px; | ||
} | ||
header h1 { | ||
margin: 0; | ||
} | ||
nav ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
nav ul li { | ||
display: inline; | ||
margin-right: 20px; | ||
} | ||
nav ul li a { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
nav ul li a:hover { | ||
text-decoration: underline; | ||
} | ||
main { | ||
padding: 20px; | ||
} | ||
section { | ||
background-color: #fff; | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
} | ||
section h2 { | ||
margin-top: 0; | ||
} | ||
section h3 { | ||
margin-top: 0; | ||
} | ||
pre { | ||
background-color: #f4f4f4; | ||
padding: 10px; | ||
border-radius: 5px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Microsoft Activation Scripts (MAS)</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="#intro">Intro</a></li> | ||
<li><a href="#faq">FAQ</a></li> | ||
<li><a href="#troubleshoot">Troubleshoot</a></li> | ||
<li><a href="#download">Download Windows / Office</a></li> | ||
<li><a href="#docs">Docs</a></li> | ||
<li><a href="#news">News</a></li> | ||
<li><a href="#credits">Credits</a></li> | ||
<li><a href="#contact">Contact Us</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section id="intro"> | ||
<h2>Intro</h2> | ||
<p>A Windows and Office activator using HWID / Ohook / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.</p> | ||
</section> | ||
<section id="download"> | ||
<h2>Download / How to use it?</h2> | ||
<h3>Method 1 - PowerShell (Recommended)</h3> | ||
<p>Right-click on the Windows start menu and select PowerShell or Terminal (Not CMD).</p> | ||
<p>Copy and paste the code below and press enter</p> | ||
<pre><code>rm https://massgrave.dev/get | iex</code></pre> | ||
<p>You will see the activation options. Follow the on-screen instructions.</p> | ||
<p>That's all.</p> | ||
</section> | ||
</main> | ||
<footer> | ||
<nav> | ||
<ul> | ||
<li><a href="#intro">Intro</a></li> | ||
<li><a href="#faq">FAQ</a></li> | ||
<li><a href="#troubleshoot">Troubleshoot</a></li> | ||
<li><a href="#download">Download Windows / Office</a></li> | ||
<li><a href="#docs">Docs</a></li> | ||
<li><a href="#news">News</a></li> | ||
<li><a href="#credits">Credits</a></li> | ||
<li><a href="#contact">Contact Us</a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |