-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
119 lines (99 loc) · 5.64 KB
/
about.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="Description" content="Jay Ferguson personal portfolio website">
<title>Jay F.</title>
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/styles.css">
<link rel="icon" type="image/png" href="/assets/icon-png/j-logo-bckgrnd.png">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300|Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:200,400&display=swap" rel="stylesheet">
</head>
<body>
<script>
document.body.className = 'fade';
</script>
<header>
<input type='checkbox' id='toggle' style='display:none;' />
<label class='toggle-btn toggle-btn__cross' for='toggle'>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</label>
<nav>
<ul>
<li><a href="/index.html"class="menu-links">Home</a></li>
<li><a href="/about.html" class="menu-links">About</a></li>
<li><a href="/projects.html" class="menu-links">Projects</a></li>
<li><a href="/contact.html" class="menu-links">Contact</a></li>
</ul>
</nav>
</header>
<div class="logo-container">
<a href="/index.html"><img src="../assets/icon-png/j-logo.svg" class="logo" alt='logo'></a>
</div>
<div id="particles-js">
</div>
<!--shared content-end-->
<section id="container">
<div class="card-container">
<div class="intro-card">
<div class="card-header m16">
About Me
</div>
<div class="underline"></div>
<p class="intro-text ">
I am a front end web developer and UX designer from Ottawa Canada. I am passionate about
creating modern designs. I have knowledge of modern
technologies such as: post CSS, SASS, Webpack, Javascript, Wordpress, Github and more.
I utilize these tools to build my sites. To see more of my projects or just to learn more about me, check out my
social media pages through the links below!
</p>
<div class="selfie-contain">
</div>
<a class="download-link" alt="Jay Ferguson's Resume" href="/assets/images/jay-resume.pdf"
download>Download my resumé
<img src="../assets/images/Asset [email protected]" class="CV" logo="resume" alt="resume">
</a>
</div>
<div class="social-container">
<a href="https://www.behance.net/JayF" target="_blank" class="social-link"><img
src="../assets/icon-png/behance.png" alt="behance" class="social-icon" alt="behance-link"></a>
<a href="https://dribbble.com/Jay-Ferguson" target="_blank" class="social-link"><img
src="../assets/icon-png/dribble.png" alt="dribble" class="social-icon" alt="dribble-link"></a>
<a href="https://www.instagram.com/jayxferg/?hl=en" target="_blank" class="social-link"><img
src="../assets/icon-png/insta-logo-trns.png" alt="instagram"
class="social-icon" alt="instagram-link"></a>
<a href="https://codepen.io/ferg04084" target="_blank" class="social-link"><img
src="../assets/icon-png/code-pen-logo.png" alt="codepen" class="social-icon" alt="codepen-link"></a>
<a href="https://github.com/Jay-Ferguson" target="_blank" class="social-link"><img src="../assets/icon-png/github-logo.jpg" alt="codepen" class="social-icon" alt="github-link"></a>
</div>
</div>
</section>
<script>
document.addEventListener("DOMContentLoaded", function(e){
document.body.classList.remove('fade');
});
</script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load('particles-js', '../particles.json',
function () {
console.log("particles.json loaded...");
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/d3js/5.9.7/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script>
<script src="../node_modules/aos/dist/aos.js"></script>
<script src="/js/main.js">
</script>
<footer id="footer">
<div class="footer-text">Jay Ferguson™</div>
</footer>
</body>
</html>