-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (71 loc) · 1.7 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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Portfolio</title>
<link rel='stylesheet' href='styles.css' />
</head>
<body>
<div class='menu'>
<ul class='navigation'>
<li><a href="index.html">Home</a></li>
<li class='dropdown' id='longDropdown'><span>Labs</span>
<ul class='labs-menu'>
<li><a href='#'>Lab 1</a></li>
<li><a href='#'>Lab 2</a></li>
<li><a href='#'>Lab 3</a></li>
<li><a href='#'>Lab 4</a></li>
</ul>
</li>
</ul>
</div>
<div class='content'>
<div id='about'>
<h1 id="aboutTitle">About:</h1>
<p id="aboutParagraph">
I am Keylan Hin-Lung Edward Jensen, a human being and student of Brigham Young University. I exist, and my favorite color is blue.
</p>
<hr/>
</div>
<div id='qualifications'>
<div id='projects'>
<h1>Projects:</h1>
<p>
<ol>
<li>Mobile Grey-Water Management System</li>
<li>HaulGauge After-Production Development</li>
<li>Activity D7: Development Workflow with Git</li>
</ol>
</p>
<hr/>
</div>
<div id='experience'>
<h1>Experience:</h1>
<p>
<ul>
<li>1 Year As Product Development Engineer Intern - Hall Labs</li>
</ul>
</p>
<hr/>
</div>
</div>
<div id='contact'>
<h1>Contact:</h1>
<p>
<h2>Email:</h2>
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
<h2>Github:</h2>
<ul>
<li><a class='button' href="https://github.com/VoidDead">https://github.com/VoidDead</a></li>
</ul>
</p>
<hr/>
</div>
</div>
<div class='footer'>
<p id='footer'>This is a footer, I guess.</p>
</div>
</body>
</html>