-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.06 KB
/
index.html
File metadata and controls
47 lines (35 loc) · 1.06 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<!-- Scales the site to match the device it's on -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Will link a CSS document for use with this HTML file -->
<link rel="stylesheet" href="">
<style>
</style>
<!-- Will link a script for use with this HTML file -->
<script src="name"></script>
<head>
<title>Welcome</title>
</head>
<body>
<div class="blurb">
<h1>Hi there, I'm Brandon</h1>
<p>
I'm using this as a launchpad for my own studies and personal projects.<br>
Enjoy your stay.
</p>
</div><!-- /.blurb -->
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="https://www.linkedin.com/in/bfiles/">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>