-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
98 lines (81 loc) · 3.91 KB
/
resume.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jeff Foster</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- normalize all the css-->
<link rel="stylesheet" href="normalize.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.4/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.4/p5.min.js"></script>
<style>
canvas {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
z-index: -1;
}
.container-fluid {
background-color: transparent;
position: absolute;
width: 60%;
left: 20px;
top: 45%;
}
</style>
</head>
<body>
<!--<canvas></canvas>-->
<img src="Screen Shot 2021-01-03 at 3.17.29 PM.png"/>
<div class="container-fluid">
<div id="header">
<a href="https://www.linkedin.com/in/jeffreybfoster"><img id="me" style="border-radius: 50%;" src="https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAQqAAAAJDZiNTJmZjEwLWZmMmYtNDk2Yi05MzgwLWNhODkwZDAyNTZmMg.jpg" height="200" left="100" width="200"></a>
<div id="name" style="display:inline;"><a href="https://www.linkedin.com/in/jeffreybfoster"><h1>Jeff Foster, CFE</h1></a></div>
<h1 style="display:inline; font-weight: normal;">|</h1>
<h3 style="display:inline; font-weight: normal;"> (775) 287-7967</h3>
<h1 style="display:inline; font-weight: normal;">|</h1>
<h3 style="display:inline; font-weight: normal;"><a href="mailto:[email protected]">[email protected]</a></h3>
<h1 style="display:inline; font-weight: normal;">|</h1>
<h3 style="display:inline; font-weight: normal;"><a href="https://twitter.com/JBrianFoster">@JBrianFoster</a></h3>
<h1 style="display:inline; font-weight: normal;">|</h1>
<h3 style="display:inline; font-weight: normal;"><a href="http://jeffreybfoster.com/">Blog</a></h3>
<h1 style="display:inline; font-weight: normal;">|</h1>
<h3 style="display:inline; font-weight: normal;"><a href="https://drive.google.com/file/d/0B8dilFDjX9SrQnNNMnZJZkFPRVk/view?pref=2&pli=1">PDF</a></h3>
<br/>
<br/>
</div>
</div>
<script>
var canvas;
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}
function setup() {
//canvas = createCanvas(windowWidth, windowHeight);
smooth();
//canvas.position(0, 0);
}
function draw() {
var r = 255; //map(mouseX, 0, windowWidth, 0, 255);
var g = 255; //map(mouseY, 0, windowHeight, 255, 0);
var b = 255; //map(mouseX, 0, windowWidth, 255, 0);
background(255 - r, 255 - g, 255 - b);
// stroke(0);
// fill(0);
// textSize(64);
// text(mouseX, mouseX + 20, mouseY + 20)
for (var i = 0; i < windowWidth; i += windowWidth / 20) {
for (var j = 0; j < 200; j += 200 / 10) {
stroke(r, g, b);
line(i, j, j + windowWidth, i);
//line(j, i, i, j);
}
}
}
</script>
</body>
</html>