-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./project_lists.js"></script>
</head>
<body>
<nav id="navbar">
<a href="#welcome-section">About</a>
<a href="#projects">Projects</a>
</nav>
<main>
<section id="welcome-section">
<h1>Hi this is Norman</h1>
<div id="about_text">
<p>My past work has focussed on several areas: Structural Engineering, Applied Mathematics, Applied Mechanics, Facade Engineering, and Software Development.</p>
<div id="contact_container">
Find me on:
<a href="https://www.linkedin.com/in/norman-richardson-9a876162/" target="_blank">LinkedIn</a>
<a href="https://github.com/normanrichardson" target="_blank">GitHub</a>
</div>
<p>Inspiration for this page: BSOD</p>
</div>
</section>
<section id="projects">
<h2>Web projects</h2>
<div id="web_project_container" class="project_container">
</div>
<h2>Open source projects</h2>
<div id="os_project_container" class="project_container">
</div>
</section>
</main>
</body>
</html>