-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (48 loc) · 2.32 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About | Dean Krueger</title>
<link href="./css/styles.css" rel="stylesheet">
</head>
<body>
<!--Banner and Nav Bar (goes at the top of every page)-->
<div id="banner"></div>
<header id="header">
<div class="container">
<nav class="navigation">
<div class="content">
<ul class="menu">
<li><a href="./index.html">HOME</a></li>
<li><a href="./about.html">ABOUT</a></li>
<li class="menu-item-expanded">INTERESTS
<ul class="menu">
<li class="menu-item-expanded"><a href="./pages/nuclear_engineering.html">Nuclear Engineering</a></li>
<li class="menu-item-expanded"><a href="./pages/energy_policy.html">Energy Policy</a></li>
<li class="menu-item-expanded"><a href="./pages/space_exploration.html">Space Exploration</a></li>
</ul>
</li>
<li class="menu-item-expanded">RESEARCH PROJECTS
<ul class="menu">
<li class="menu-item-expanded"><a href="https://github.com/uw-reti/tricycle">Tricycle</a></li>
<li class="menu-item-expanded"><a href="https://github.com/cyclus/cyclus">Cyclus</a></li>
</ul>
</li>
<li><a href="./files/Dean-Krueger-Resume.pdf" target="_blank">CV</a></li>
</ul>
</div>
</nav>
</div>
</header>
<div class="main-content">
<p>
This page is under construction! Check back later for updates!
</p>
</div>
<div class="image-and-quote">
<div class="text-content">
<p class="quote">"Saving this planet, exploring the rest"</p>
<p class="quote-attribution">-Slogan of the UW-Madison Nuclear Engineering and Engineering Physics Department</p>
</div>
</div>
</body>
</html>