-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
34 lines (29 loc) · 1 KB
/
Copy pathabout.html
File metadata and controls
34 lines (29 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>About me</title>
</head>
<body>
<div class="container">
<div class="blurb">
<h1>About me</h1>
<p>I'm Brandon.</p>
<p>I'm using this as a launchpad for my own studies and personal projects.</p>
<p>Right now, my website is pretty basic, but I have plans to slowly make it better and add additional features.</p>
<p>For now, I'll use this as a progress tracker as I explore software development, and learn all there is to it.</p>
<p>Enjoy your stay.</p>
</div><!-- /.blurb -->
</div><!-- /.container -->
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="https://www.linkedin.com/in/brandonfiles/">LinkedIn</a></li>
<li><a href="mailto:files.brandon@gmail.com">Contact me</a></li>
<li><a href="https://github.com/exe-Files">github.com/exe-Files</a></li>
</ul>
</nav>
<footer>
</footer>
</body>
</html>