-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (133 loc) · 3.86 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
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Justin Hourigan | Principal Cloud Architect</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(to bottom, #feffff, #f9fafa);
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
}
.container {
display: flex;
flex: 1;
flex-wrap: nowrap;
height: 100%;
}
.left-section, .right-section {
width: 50%;
}
.left-section {
display: flex;
flex-direction: column;
justify-content: center;
padding: 40px;
}
.left-section h1 {
font-size: 3rem;
color: #333;
}
.left-section h2 {
font-size: 2rem;
color: #555;
margin-bottom: 20px;
}
.left-section p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 30px;
color: #666;
}
.social-icons {
display: flex;
gap: 20px;
align-items: center;
}
.social-icons img {
width: 40px;
height: 40px;
object-fit: cover;
display: block;
}
.right-section {
display: flex;
justify-content: center;
align-items: center;
}
.right-section img {
max-width: 100%;
height: auto;
}
/* Footer styles */
footer {
text-align: center;
padding: 10px 0;
background-color: #f9fafa;
font-size: 0.8rem;
color: #888;
width: 100%;
}
/* Responsive Design for Mobile Devices */
@media only screen and (max-width: 768px) {
.container {
flex-direction: column; /* Stack the sections vertically */
height: auto; /* Adjust height to fit the content */
}
.left-section, .right-section {
width: 100%; /* Full width for each section on mobile */
padding: 20px; /* Adjust padding for smaller screens */
}
.left-section h1 {
font-size: 2.5rem; /* Smaller font size for mobile */
}
.left-section h2 {
font-size: 1.5rem; /* Adjust job title size */
}
.left-section p {
font-size: 1rem; /* Smaller paragraph text */
margin-bottom: 20px; /* Adjust margin */
}
.social-icons img {
width: 30px; /* Slightly smaller icons for mobile */
height: 30px;
}
.right-section img {
width: 80%; /* Scale down profile image on mobile */
height: auto;
}
footer {
font-size: 0.7rem; /* Smaller footer text on mobile */
}
}
</style>
</head>
<body>
<div class="container">
<div class="left-section">
<h1>Justin Hourigan</h1>
<h2>Cloud Architect and Home Lab Hobbiest</h2>
<p>Way back in the ‘90s, I kicked off my career in television as a graphic designer and animator—think flashy transitions and graphics that would make your dial-up modem sweat. But then, the internet came knocking, and I couldn’t resist the call of the wild web. I transitioned into the world of IT, focusing on video streaming—back when buffering was basically a rite of passage. Fast forward to today, and I’ve fully leveled up to a cloud architect, designing cloud infrastructure that keeps things running smoother than a cat meme on fiber internet. It’s been one wild, pixelated ride!</p>
<div class="social-icons">
<a href="https://x.com/justhour" target="_blank"><img src="twitter.svg" alt="Twitter"></a>
<a href="https://www.linkedin.com/in/hourigan/" target="_blank"><img src="linkedin.svg" alt="LinkedIn"></a>
<a href="https://www.imdb.com/name/nm2583439/" target="_blank"><img src="imdb.svg" alt="IMDB"></a>
</div>
</div>
<div class="right-section">
<img src="profile.png" alt="Cartoon Profile Picture">
</div>
</div>
<footer>
<p>All this was designed and written by AI</p>
</footer>
</body>
</html>