-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReference.html
More file actions
123 lines (109 loc) · 3.46 KB
/
Reference.html
File metadata and controls
123 lines (109 loc) · 3.46 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reference — Huffles IT Services</title>
<style>
body {
background-color: #0A0A0A;
color: #FFFFFF;
font-family: 'Segoe UI', sans-serif;
padding: 40px 20px;
text-align: center;
}
h1, h2 {
color: #0F52BA;
margin-bottom: 20px;
}
.link-group {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
max-width: 1200px;
margin: 0 auto 60px;
}
.link-box {
flex: 1 1 300px;
max-width: 400px;
background-color: #111111;
border: 1px solid #0F52BA;
padding: 20px;
text-align: left;
border-radius: 8px;
}
.link-box h3 {
color: #0F52BA;
margin-bottom: 10px;
}
.link-box a {
color: #FFFFFF;
text-decoration: underline;
display: block;
margin-bottom: 8px;
}
footer {
margin-top: 60px;
font-size: 0.9em;
color: #FFFFFF;
}
.back-button {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
background-color: #0F52BA;
color: #FFFFFF;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
.back-button:hover {
background-color: #FFFFFF;
color: #0F52BA;
}
</style>
</head>
<body>
<h1>Reference</h1>
<h2>External Docs & Vendor Links</h2>
<div class="link-group">
<div class="link-box">
<h3>Microsoft</h3>
<a href="https://learn.microsoft.com/en-us/windows-server/" target="_blank">Windows Server Docs</a>
<a href="https://learn.microsoft.com/en-us/powershell/" target="_blank">PowerShell Reference</a>
<a href="https://learn.microsoft.com/en-us/security/" target="_blank">Microsoft Security Docs</a>
</div>
<div class="link-box">
<h3>Cisco</h3>
<a href="https://www.cisco.com/c/en/us/support/index.html" target="_blank">Cisco Support</a>
<a href="https://www.cisco.com/c/en/us/td/docs/" target="_blank">Cisco Documentation Index</a>
<a href="https://www.cisco.com/c/en/us/training-events/training-certifications/exam-tutorial.html" target="_blank">Cisco Exam Tutorials</a>
</div>
<div class="link-box">
<h3>CompTIA</h3>
<a href="https://www.comptia.org/certifications" target="_blank">Certification Overview</a>
<a href="https://www.comptia.org/training/resources" target="_blank">Study Resources</a>
<a href="https://www.comptia.org/blog" target="_blank">CompTIA Blog</a>
</div>
<div class="link-box">
<h3>Ubiquiti</h3>
<a href="https://help.ui.com/" target="_blank">Ubiquiti Help Center</a>
<a href="https://community.ui.com/" target="_blank">Ubiquiti Community</a>
<a href="https://dl.ui.com/" target="_blank">Firmware Downloads</a>
</div>
<div class="link-box">
<h3>Linux & Open Source</h3>
<a href="https://man7.org/linux/man-pages/index.html" target="_blank">Linux Man Pages</a>
<a href="https://wiki.archlinux.org/" target="_blank">Arch Wiki</a>
<a href="https://www.kernel.org/doc/html/latest/" target="_blank">Kernel Documentation</a>
</div>
</div>
<footer>
<p>© 2025 Huffles IT Services LLC — All rights reserved.</p>
<p>
<a class="back-button" href="Huffles-IT-Services-Code-Reference.html">🖥️ Back to Porch</a>
</p>
</footer>
</body>
</html>