-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) · 1.94 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wilbur's Site</title>
<link rel="shortcut icon" href="images/icon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<div class="header-container">
<h1>Wilbur's Site</h1>
<nav>
<ul>
<li><a href="index.html"><u style="color: red;">H</u>ome</a></li>
<li><a href="blog.html"><u style="color: red;">B</u>log</a></li>
<li><a href="projects.html"><u style="color: red;">P</u>rojects</a></li>
<li><a href="about.html"><u style="color: red;">A</u>bout Me</a></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper">
<aside id="sidebar">
<script>
fetch('./sidebar.html')
.then(response => response.text())
.then(html => {
document.getElementById("sidebar").innerHTML = html;
});
</script>
<!-- this embeds the sidebar.html html into the webpage, allowing consistency across all pages -->
</aside>
<h1 style="color: white; display: inline;">wilbur</h1><h1 style="display: inline; color: red;">@</h1><h1 style="display: inline;">wilbursSite:~$ ./welcome.sh</h1>
<div id="main">
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<span id="welcome"></span>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="js/mainscript.js"></script>
</body>
</html>