-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
152 lines (130 loc) · 3.68 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Cloud Security Ninja</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;400;700&family=Roboto:wght@100&display=swap');
body {
font-family: 'Roboto Mono', monospace;
margin: 0;
padding: 0;
background-color: #1a1a1a;
font-weight: 400;
color: #4CAF50; /* Green text color */
}
.frontpage {
background-color: #1a1a1a;
color: white;
border: 80px solid black;
margin: 50px;
padding: 50px;
text-align: center;
}
header {
background-color: #333;
color: #4CAF50;
padding: 1em;
text-align: center;
}
header .image_logo {
width: 100%;
max-height: 250px;
}
nav {
background-color: #333;
padding: 1em;
text-align: center;
font-weight: 700;
}
/* ----- Link Colors ----- */
/* unvisited link */
a:link {
color: #66BB6A;
}
/* visited link */
a:visited {
color: #388E3C;
}
/* mouse over link */
a:hover {
color: #81C784;
}
/* selected link */
a:active {
color: #00C853;
}
/* ----------------------- */
nav a {
text-decoration: none;
padding: 0.5em 1em;
margin: 0 0.5em;
}
section {
max-width: 90%;
margin: 20px auto;
padding: 20px;
background-color: #333;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 8px;
}
h1, h2, h3, h4, h5, h6 {
color: #4CAF50; /* Green text color */
}
h1, h2 {
font-weight: 700;
}
p {
color: #4CAF50;
}
footer {
background-color: #1a1a1a;
color: #4CAF50;
padding-top: 1em;
padding-bottom: 1em;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
@media (max-width: 600px) {
nav {
display: flex;
flex-direction: column;
align-items: center;
}
nav a {
margin: 0.5em 0;
}
section {
max-width: 100%;
}
}
</style>
</head>
<body>
<header>
<img src="images/acloudsecninja-logo.svg" class="image_logo center" alt="A Cloud Sec Ninja Logo">
</header>
<nav>
<a href="index.html">Home</a>
<a href="courses.html">Courses</a>
<a href="services.html">Services</a>
<a href="https://www.twitch.tv/acloudsecninja/" target="_blank">Twitch Stream</a>
<a href="contactus.html">Contact Us</a>
</nav>
</body>
<div class="frontpage">
<h1>Cloud Security Consulting & Training</h1>
</div>
<!-- Default Footer Section of the Website -->
<footer>
<a href="https://www.twitch.tv/acloudsecninja/">Twitch</a>
<a href="https://www.linkedin.com/in/ryan-w-bb825869/">LinkedIn</a>
<a href="https://discord.gg/Q6HaN5khRn/">Discord</a>
<a href="https://www.youtube.com/@acloudsecninja">YouTube</a>
<a href="https://github.com/acloudsecninja">Github</a>
<p>© 2025 A Cloud Security Ninja LLC - All Rights Reserved</p>
</footer>
</html>