-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbio.html
87 lines (85 loc) · 2.46 KB
/
bio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alan Moody's Bio</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
.bio {
padding: 20px;
background: #fff;
margin-top: 20px;
color: #000;
}
.bio img {
float: left;
margin-right: 20px;
border-radius: 50%;
width: 150px;
height: 150px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Alan Moody</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Biography</a></li>
</ul>
</div>
</header>
<div class="container">
<section class="bio">
<h2>Biography</h2>
<img src="PXL_20230617_165135781.jpg" alt="Alan Moody">
<p>Hello! I am Alan Moody, a passionate engineer and outdoor enthusiast. My journey in engineering has been fueled by a love for problem-solving and innovation. I completed my studies at Oregon State University, where I gained a strong foundation in engineering principles and practices. When I'm not working on exciting projects, you can find me on a mountain bike trail or contributing to the Formula Student team.</p>
</section>
</div>
<footer>
<p>© 2024 Alan Moody. All rights reserved.</p>
</footer>
</body>
</html>