-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (44 loc) · 1.67 KB
/
index.html
File metadata and controls
58 lines (44 loc) · 1.67 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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Matthew Gagnon</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.5/fullpage.min.css">
<link rel="stylesheet" href='/css/main.css'>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script type="text/javascript" src="fullpage.js"></script>
</head>
<body>
<div id="header">
<nav>
<ul class="nav-links">
<li><a class="nav-link" href="#section1">Home</a></li>
<li><a class="nav-link" href="#section2">Contact</a></li>
<li><a class="nav-link" class="lastSection" href="#section3">Projects</a></li>
</ul>
</nav>
</div>
<div id="fullpage">
<div class="section s1">
<h1>Matthew Gagnon</h1>
<h3>Computer Science, BU '21</h3>
</div>
<div class="section s2">
<h1>Contact me</h1></div>
<div class="section s3">
<h1>Projects</h1></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.5/fullpage.min.js"></script>
<script>
new fullpage('#fullpage', {
autoScrolling:true,
scrollHorizontally: true,
navigation: true,
anchors: ['section1', 'section2', 'section3'],
navigationTooltips: ['Home', 'Contact', 'Projects']
});
</script>
</body>
</html>