-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My DevOps Project</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
}
h1 {
font-size: 36px;
text-align: center;
margin-top: 50px;
}
p {
font-size: 24px;
text-align: center;
margin-top: 50px;
}
button {
display: block;
margin: 50px auto;
padding: 10px 20px;
font-size: 24px;
background-color: #0077B5;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #00405C;
}
a {
display: block;
text-align: center;
margin-top: 50px;
font-size: 24px;
color: #0077B5;
text-decoration: none;
}
a:hover {
color: #00405C;
}
img {
display: block;
margin: 0 auto;
width: 400px;
height: 300px;
}
</style>
</head>
<body>
<h1>My DevOps Project</h1>
<img src="https://media.giphy.com/media/DpNrB4a210Qg0/giphy.gif" alt="Animated gif of a rocket launching">
<p>I successfully launched an EC2 instance, SSH'd into it, installed and set up Apache, and deployed this website!</p>
<button onclick="window.location.href='https://www.linkedin.com/sharing/share-offsite/?url='+encodeURIComponent(window.location.href)">Share on LinkedIn</button>
<a href="https://www.youtube.com/@cloudchamp">Subscribe to my YouTube channel</a>
</body>
</html>