-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
50 lines (39 loc) · 1.8 KB
/
Copy pathHome.html
File metadata and controls
50 lines (39 loc) · 1.8 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
48
49
50
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="HomeStyleSheet.css" />
</head>
<body onload="updateCounter()">
<div class="navigation">
<a href="https://bsewell-resume-website.s3.us-west-1.amazonaws.com/Home.html">HOME</a>
<a href="https://bsewell-resume-website.s3.us-west-1.amazonaws.com/Resume.html">RESUME</a>
<a href="https://bsewell-resume-website.s3.us-west-1.amazonaws.com/About.html">ABOUT</a>
<a href="https://bsewell-resume-website.s3.us-west-1.amazonaws.com/Projects.html">PROJECTS</a>
<a href="https://bsewell-resume-website.s3.us-west-1.amazonaws.com/Blog.html">BLOG</a>
</div>
<div class="header">
<p>Hey There, I'm Bryce Sewell!</p>
</div>
<div class="visitorcount">
<p>Congrats! You are visitor number <span class="view-count"></span>!</p>
</div>
<div class="images">
<a href="https://www.linkedin.com/in/bryce-sewell-1685ab22b" target="_blank">
<img src="/images/linkedin.png" title="Let's connect on LinkedIn!" style="width:50px;height:50px;">
</a>
<a href="https://github.com/BryceCSewell" target="_blank">
<img src="/images/github.png" title="Add me on GitHub!" style="width:50px;height:50px;">
</a>
<a href="https://www.instagram.com/bryce_sewell_/" target="_blank">
<img src="/images/instagram.png" title="Follow me on Instagram!" style="width:50px;height:50px;">
</a>
<a href="https://www.youtube.com/@bsewellmusic" target="_blank">
<img src="/images/youtube.png" title="Check out my Youtube Channel!" style="width:50px;height:50px;">
</a>
</div>
<div class="disclaimer">
<p>This is just the main page, feel free to check out the links above!</p>
</div>
<script src="Home.js"></script>
</body>
</html>