-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (142 loc) · 5.31 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SaolGhra - Portfolio - Spencer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Spencer Bullock's Portfolio - A student and aspiring full-stack software engineer with expertise in HTML, CSS, Python, Java, JavaScript, C#, C++, and web development."
/>
<meta
name="keywords"
content="Spencer Bullock, Portfolio, Web Development, Full-Stack, Software Engineer, HTML, CSS, Python, Java, JavaScript, C#, C++, App Development, Web Development"
/>
<meta name="author" content="Spencer Bullock" />
<meta name="theme-color" content="#3e0000" />
<!-- Open Graph tags for better social media sharing -->
<meta property="og:url" content="https://www.saolghra.co.uk/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="SaolGhra - Portfolio - Spencer" />
<meta
property="og:description"
content="Spencer Bullock's Portfolio - A student and aspiring full-stack software engineer with expertise in HTML, CSS, Python, Java, JavaScript, C#, C++, and web development."
/>
<meta
property="og:image"
content="https://www.saolghra.co.uk/assets/icon.png"
/>
<!-- Twitter Card tags for Twitter sharing -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@SaolGhra" />
<meta name="twitter:title" content="SaolGhra - Portfolio - Spencer" />
<meta
name="twitter:description"
content="Spencer Bullock's Portfolio - A student and aspiring full-stack software engineer with expertise in HTML, CSS, Python, Java, JavaScript, C#, C++, and web development."
/>
<meta
name="twitter:image"
content="https://www.saolghra.co.uk/assets/icon.png"
/>
<!-- Additional icons -->
<link rel="icon" href="https://www.saolghra.co.uk/assets/icon.png" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://www.saolghra.co.uk/assets/icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://www.saolghra.co.uk/assets/icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://www.saolghra.co.uk/assets/icon.png"
/>
<link rel="canonical" href="https://www.saolghra.co.uk/" />
<!-- Stylesheet -->
<link rel="stylesheet" href="styles/styles.css" />
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HME8PQRCDV"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-HME8PQRCDV");
</script>
<body>
<div id="canvas-container">
<canvas></canvas>
<div id="red-circle" class="circle"></div>
<div id="purple-circle" class="circle"></div>
</div>
<div class="header">
<div class="social-icons left">
<a href="https://www.github.com/saolghra/" class="social-icon"
><img
src="../assets/devicons/github.svg"
alt="GitHub"
style="width: 24px; height: 24px"
/></a>
</div>
<ul class="menu">
<li><a href="https://www.saolghra.co.uk/">Home</a></li>
<li><a href="./pages/projects">Projects</a></li>
<li><a href="./pages/skills">Skills</a></li>
<li><a href="./pages/contact">Contact</a></li>
</ul>
<div class="social-icons right">
<a href="mailto:[email protected]" class="social-icon"
><img
src="../assets/devicons/email.svg"
alt="Email"
style="width: 24px; height: 24px"
/></a>
</div>
</div>
<main>
<section id="experience" class="main-section">
<h2>Experience</h2>
<div class="timeline"></div>
</section>
<section id="current-projects" class="main-section">
<h2>Current Projects</h2>
<div class="project-timeline"></div>
</section>
<!-- <section id="education" class="section">
<h2>Education</h2>
<div class="timeline"></div>
</section> -->
<div class="divider" id="divider"></div>
<section id="about" class="main-section">
<h2>About</h2>
<p>
Hey, I'm Spencer Bullock, a full-stack software engineer with a
passion for turning ideas into functional solutions.<br /><br />
Proficient in 13 languages and 13 frameworks, including HTML, CSS,
Python, Java, JavaScript, C#, C++, and Golang, I specialize in web and
app development.<br /><br />
Outside of coding, you'll find me gaming, honing my music skills, and
hanging out with friends.<br /><br />
Excited for the next challenge in software engineering!
</p>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script type="module" src="./scripts/animin.js"></script>
<script src="./scripts/header.js"></script>
<script type="module" src="./scripts/fluidbg.js"></script>
<script src="scripts/current.js"></script>
<script src="scripts/experiences.js"></script>
</body>
</html>