-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ryan Bamford - Personal Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #4f8dae;
color: #333;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
img {
max-width: 100%;
height: auto;
}
h1 {
color: #444;
}
p {
font-size: 18px;
line-height: 1.6;
}
.contact-info {
margin-top: 20px;
}
.contact-info a {
color: #1e90ff;
text-decoration: none;
margin: 0 10px;
}
.contact-info a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<img src="launchcodes.jpeg" alt="family picture">
<h1>Ryan Bamford</h1>
<p>Systems Engineer, father, fitness fanatic and court jester. This domain is my (public) space to test out various Azure functions and scripting.</p>
<div class="contact-info">
<p>Contact me at: <a href="mailto:theryanbamford@gmail.com">theryanbamford@gmail.com</a></p>
<p>
<a href="https://github.com/egobrane" target="_blank">GitHub</a> |
<a href="https://www.linkedin.com/in/theryanbamford" target="_blank">LinkedIn</a>
</p>
</div>
</div>
</body>
</html>