-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHuffles-IT-Services-Code-Reference.html
More file actions
98 lines (91 loc) · 2.89 KB
/
Huffles-IT-Services-Code-Reference.html
File metadata and controls
98 lines (91 loc) · 2.89 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Huffle's IT Services Code Reference</title>
<style>
body {
background-color: #0A0A0A;
color: #FFFFFF;
font-family: 'Segoe UI', sans-serif;
padding: 40px 20px;
text-align: center;
}
h1 {
color: #0F52BA;
margin-bottom: 40px;
}
.button-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}
a {
display: block;
padding: 14px 20px;
background-color: #0F52BA;
color: #FFFFFF;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #FFFFFF;
color: #0F52BA;
}
footer {
margin-top: 60px;
font-size: 0.9em;
color: #FFFFFF;
}
</style>
</head>
<body>
<h1>🧠 Huffles IT Services Code Reference</h1>
<div class="button-grid">
<a href="Windows.html">💻 Windows</a>
<a href="MacOS.html">🍎 MacOS</a>
<a href="Linux.html">🐧 Linux</a>
<a href="ChromeOS.html">💠 ChromeOS</a>
<a href="Android-MDM.html">🤖 Android MDM</a>
<a href="iOS-MDM.html">📱 iOS MDM</a>
<a href="Recovery.html">🛠️ Recovery</a>
<a href="Cleanup.html">🧹 Cleanup</a>
<a href="Tools.html">🧰 Tools</a>
<a href="Cisco-IOS.html">📡 Cisco IOS</a>
<a href="Metasploit.html">💣 Metasploit</a>
<a href="Nmap.html">📍 Nmap</a>
<a href="BurpSuite.html">🕷️ Burp Suite</a>
<a href="Git-GitHub.html">🐙 Git & GitHub</a>
<a href="PowerShell.html">⚡ PowerShell</a>
<a href="Terminal.html">🧮 Terminal</a>
<a href="Firewall.html">🔥 Firewall</a>
<a href="Encryption.html">🔐 Encryption</a>
<a href="Backup.html">💾 Backup</a>
<a href="Monitoring.html">📊 Monitoring</a>
<a href="Incident-Response.html">🚨 Incident Response</a>
<a href="Browser.html">🌐 Browser</a>
<a href="Mobile.html">📱 Mobile</a>
<a href="Scan.html">📷 Scan</a>
<a href="Reference.html">📎 Reference</a>
<a href="Thank-You.html">🙏 Thank You</a>
<a href="About-Huffles.html">🧡 About Huffle's</a>
<a href="Certification.html">🎓 Certification</a>
<a href="Networking.html">🌐 Networking</a>
<a href="Security.html">🛡️ Security</a>
<a href="OpenSSL.html">🔑 OpenSSL</a>
<a href="Wireshark.html">🦈 Wireshark</a>
<a href="Ubiquiti.html">📶 Ubiquiti</a>
<a href="VirtualMachine.html">📦 Virtual Machine</a>
<a href="RasberryPi.html">🍓 Raspberry Pi</a>
<a href="index.html">🏠 Home</a>
</div>
<footer>
<p>© 2025 Huffle's IT Services LLC — All rights reserved.</p>
</footer>
</body>
</html>