-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathservices.html
162 lines (141 loc) · 4.41 KB
/
services.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
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Cloud Sec Ninja Cloud Security Training</title>
<script async src="https://js.stripe.com/v3/buy-button.js"></script>
<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 */
}
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;
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>
<section id="services">
<div class="section-inner">
<h1>Services</h1>
<ul>
<li>
<p>Request - 1v1 Mentor with Ryan Weber (Owner of ACSN)
<stripe-buy-button
buy-button-id="buy_btn_1OaXM0GG2rcO70EawPzMkNax"
publishable-key="pk_live_51OaX6mGG2rcO70EaTxmlRW0IuCVCjJ3pbfeW63A2LxInwCWD6uRWhoL68FMk7OUZk1G4X0xiCrMjZ3HZJmz4p0IA00ne4rIAHs">
</stripe-buy-button>
</p>
</li>
<li>
<p>Request - Cloud Security Consulting
<stripe-buy-button
buy-button-id="buy_btn_1Od23ZGG2rcO70EaLzB24pqs"
publishable-key="pk_live_51OaX6mGG2rcO70EaTxmlRW0IuCVCjJ3pbfeW63A2LxInwCWD6uRWhoL68FMk7OUZk1G4X0xiCrMjZ3HZJmz4p0IA00ne4rIAHs">
</stripe-buy-button>
</p>
</li>
</ul>
</div>
</section>
</body>
<!-- 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>
<p>© 2024 A Cloud Sec Ninja - All Rights Reserved</p>
</footer>
</html>