-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="cssFiles/style.css">
<script src="scripts/include.js"></script>
</head>
<body>
<div data-include="header.html"></div>
<main>
<section id="intro" class="container">
<h2>About Me</h2>
<p>
My name is Roy Bolter. I am a student at the University of Central Florida.
I started my journey as a computer science major in the summer of '22 and
set to graduate in the Spring '26 semester. My interests are A.I. and
Game Programming. I, along with my team, recently won the Best Game
award during the KnightHacks Hackathon with our game,
<a href="https://youtu.be/2wAuvyyh0eY?si=7S4RNaxtalgya5wh"> Shipwreck Showdown</a>.
I am currently working on another Unity game that will be hosted right here on my site!
</p>
<h3 style="text-align: center">Languages</h3>
<div class="languages">
<!-- Python -->
<div class="language">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg" alt="Python"
title="Python">
</div>
<!-- C -->
<div class="language">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg" alt="C"
title="C">
</div>
<!-- C++ -->
<div class="language">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/18/ISO_C%2B%2B_Logo.svg" alt="C++"
title="C++">
</div>
<!-- C# -->
<div class="language">
<img src="icons/c-sharp-c.svg" alt="C#" title="C#">
</div>
<!-- Java -->
<div class="language">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/java/java-original.svg" alt="Java"
title="Java">
</div>
</div>
</section>
<section id="recent" class="container">
<h2>Recent Projects</h2>
<div class="highlight-container">
<div class="highlight" onclick="window.location.href='groceryPlanner.html'">
<h3>Grocery Planner</h3>
<p>
Create recipes and store them in a database. Then, when you want to
plan the meals you want to make, you add the recipes for those meals
and a grocery list is made for you automatically!
</p>
</div>
<div class="highlight">
<h3>Work In Progress</h3>
<p>Not telling yet :)</p>
</div>
</div>
</section>
</main>
<div data-include="footer.html"></div>
</body>
</html>