-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="gradient.js"></script>
</head>
<body>
<div id="container">
<div id="refresh" onclick=reset()>
<i id="spin" class="fas fa-sync"></i>
</div>
<div id="content">
<p>sam heckle</p>
<p class="fluff"></p>
<div id="buttons">
<button onclick="location.href='http://samheckle.com/projects/'">projects</button>
<button onclick="location.href='https://github.com/samheckle'">github</button>
<button onclick="location.href='http://samheckle.com/hosted/'">weird</button>
<button onclick="location.href='media/Heckle_Resume.pdf'">resume</button>
</div>
<!-- <button onclick=onAbout()>About</button> -->
</div>
<canvas id="canvas"></canvas>
<div id="overlay">
<div class="x-closer">
<i class="fas fa-times" onclick=off()></i>
</div>
</div>
<div id="overlayAbout">
<div class="x-closer">
<i class="fas fa-times" onclick=off()></i>
</div>
<div class="text-center">
<div>
<img src="media/IMG_1142.jpg" class="rounded img-circle" alt="me">
</div>
<h1>hi my name is sam</h1>
<h1>here is my
<a href="media/Heckle_Resume.pdf" type="application/pdf">resume</a>
</h1>
<div id="icons">
<a href="https://github.com/theheckle"><i class="fab fa-github fa-3x"></i></a>
<a href="https://www.linkedin.com/in/samheckle/"><i class="fab fa-linkedin-in fa-3x"></i></a>
</div>
</div>
</div>
</div>
</body>
</html>