-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Portfolio Website</title>
<link href="main.css" rel="stylesheet" type="text/css" />
<link href="AESTHETIC.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Carrois+Gothic+SC&display=swap" rel="stylesheet">
</head>
<body role="document">
<nav role="navigation">
<p>Vincent Simone</p>
<ul>
<li>
<button id="about">About Me</button>
</li>
<li>
<button id="projects">Projects</button>
</li>
<li>
<button id="contact">Contact</button>
</li>
<audio id="macplus" preload="none">
<source
src="https://ia801602.us.archive.org/1/items/MACINTOSHPLUS420_201705/MACINTOSH%20PLUS%20-%20%E3%83%AA%E3%82%B5%E3%83%95%E3%83%A9%E3%83%B3%E3%82%AF420%20_%20%E7%8F%BE%E4%BB%A3%E3%81%AE%E3%82%B3%E3%83%B3%E3%83%94%E3%83%A5%E3%83%BC.ogg"
type="audio/ogg"
>
</audio>
</ul>
<div class="secrets"><button id="aestheticize">A E S T H E T I C</button></div>
</nav>
<main role="main" aria-live="assertive">
<!--Dynamic HTML will be placed here-->
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="portfolio.js"></script>
<script type="text/javascript" src="projectsArray.js"></script>
<footer role="contentinfo">Written and coded by Vincent Simone</footer>
</body>
</html>