-
Notifications
You must be signed in to change notification settings - Fork 0
/
websiteFacts.html
42 lines (40 loc) · 1.61 KB
/
websiteFacts.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link id="styleSheet" rel="stylesheet" href="styles.css"/>
<script src="script.js"></script>
<script src="confetti.js"></script>
<title>Eric Spencer</title>
<link rel="icon" href="Images/logo.png" type="image/png"/>
</head>
<body>
<div class="container">
<header>
<h1>Eric Spencer</h1>
<h3>May 2023 - (Present) June 2024</h3>
</header>
<main>
<p class="paragraphText">
<h2>nano "inspiration.txt"<span class="cursor">▐</span></h2>
You may notice that this website looks like a CLI or terminal. This is entirely intentional and actually reflects
my own terminal that I use on macOS. So, what you're seeing is a reflection of my own workspace in <thead>form of a website. Have a look:<br><br>
<img src="Images/Website/TerminalPicture.png" alt="Terminal Picture" width="90%"><br>
You can see I love ASCII art and the color of terminal green.<br><br>
<hr>
<h2>nano "history.txt"</h2>
</p>
<hr>
<p>
<a href="https://ericspencer00.github.io">Go back to Main Page</a>
<br><br>
Last updated:
</p>
<p id="date"></p>
<script>
const options = { month: 'long', day: 'numeric', year: 'numeric' };
document.getElementById("date").innerHTML = new Date(document.lastModified).toLocaleDateString('en-US', options);
</script>
</main>
</body>