-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 loc) · 1.6 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
<html>
<head>
<title>Ricky's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<link rel="stylesheet" type="text/css" href="css/hamburgerindex.css"/>
<script type="text/javascript" src="js/animate.js"></script>
<script type="text/javascript" src="js/openNav.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
</head>
<body>
<div class="big-wrapper">
<header>
<div class="hamburger" href="javascript:void(0);" onclick="animate(this);openNav();">
<div id="bar1"></div>
<div id="bar2"></div>
<div id="bar3"></div>
</div>
<nav class="nav-bar" id="head-nav">
<a href="index.html">Home</a>
<a href="aboutme.html">About Me</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Projects</a>
</nav>
</header>
<div class="filler">
</div>
<div class="middle-wrapper">
<div class="page-title">
<p>Ricky Faure's Web Portfolio</p>
</div>
<div class="nav-keys">
<a href="index.html">Home</a>
<a href="aboutme.html">About Me</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Projects</a>
</div> <!--Links-->
</div> <!--Middle Wrapper-->
<div class="filler">
</div>
</div> <!-- Big Wrapper -->
<!--Hacky thing to fix bug-->
<div class="closed" id="bool">
</div> <!--End hacky div-->
</body>
</html>