-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (62 loc) · 1.96 KB
/
index.html
File metadata and controls
70 lines (62 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>About Me</title>
<!-- embedded styling -->
<style>
h1 {
color: #333; /* takes over the body styling from the file */
font: bold;
}
p {
font-size: large; /* differnt font size */
}
</style>
</head>
<body>
<header>
<h1>James Voight</h1>
<!-- link to my email and an external site which is github in this case -->
<nav style="margin-top: 1vh;"> <!-- inline styling -->
<a href="mailto:jpvoight@liberty.edu">Send an email</a>
<a href="https://github.com/James-Voight" target="_blank">New school github</a> <!--new github account mainly for class projects -->
</nav>
</header>
<div>
<div class="info">
<h2>Education</h2>
<br>
<p>I currently am a 2nd year attending Liberty University
strive for a degree in Computer Science. My cognates include
software engineering, web & mobile, and data science.
</p>
</div>
<hr>
<div class="info">
<h2>General Information</h2>
<br>
<p>I was born in Minneapolis, Minnesota and eventually moved to
Fincastle, Virginia when I turned 10. As a middle child I grew up
with 3 kind brothers who I love dearly.
</p>
</div>
<hr>
<div class="info">
<h2>Hobbies</h2>
<br>
<div id="list">
<ol>
<li>Sports</li>
<li>Reading</li>
<li>Weight lifting</li>
<li>Hiking</li>
<li>Code!</li>
</ol>
</div>
</div>
</div>
</body>
</html>