-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 940 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Brian J. Robinson</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to my webpage!</h1>
<hr>
<h2>About me</h2>
<section>
<aside>
<img src="photo.jpg">
</aside>
<article>
<p>
My name is Brian J. Robinson and I am a software developer and BYU student from Palmyra, Pennsylvania.
I have written code in assembly, C, C++, C#, Java, HTML, and Python.
My interests include mathematics, solving puzzles, video games, and music.
I have been working on some large personal projects in between classes which I hope to finalize by the end of the year, so keep an eye out!
</p>
</article>
</section>
<nav>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="experience.html">Work Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<hr>
</body>
</html>