-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
86 lines (81 loc) · 4.03 KB
/
about.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-fmPeb60a5nnCI6iSRr7ozEo6VT9P0f+Vl6e9rQw3fLgJp5U6qGQJ+qdpCLHCa9/gfzMZyJPjUTTrX/9fIy+Sw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</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>
<div id="main">
<h1 style="color: white; display: inline;">wilbur</h1>
<h1 style="display: inline; color: red;">@</h1>
<h1 style="display: inline;">wilbursSite:~$</h1>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<span id="prompt"></span>
<br>
<span id="welcome"></span>
<br>
<h1>About Me</h1>
<p>I am currently enrolled at Western Washington University in the Computer Science Program, and spend most
my time doing that, I am working on becoming certified in general IT and Linux which I am overqualified
for and should have done a while ago.</p>
<p>I do various coding projects and manage servers for me and my friends pretty often, and if I think I did
a good job doing something, it will likely show up in my projects or blog!</p>
<p>I have a large interest in Game Design, InfoSec, Web Design, and Data. I've worked with natural language
processing in the past and can confidently say, it sucks to work with.</p>
<p>The wilburthemango moniker is a sort of psuedonym I use online, and since my github account is in that
name, the site is too.</p>
<p>Thanks so much for stopping by!</p>
<h1>Contact</h1>
<p>I am avalible via the following sources:</p>
<ul class="contact-links">
<li>
<strong>Email:</strong>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<strong>Phone:</strong>
<a href="tel:+4253289443">+1 (425) 328-9443</a>
</li>
<li>
<strong>LinkedIn:</strong>
<a href="https://www.linkedin.com/in/tyler-jones-3194392a2/" target="_blank">LinkedIn</a>
</li>
</ul>
<h1>Resume:</h1>
<iframe src="media/TYLER JONES-RESUME_9-25-23.pdf" width="94.85%" height="600px"></iframe>
</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/aboutscript.js"></script>
</body>
</html>