generated from mmistakes/mm-github-pages-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (83 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Austin Burnett Portfolio</title>
</head>
<body>
<header>
<div class="split">
<div class="picture">
<img alt="Austin Burnett Image" src="./assets/images/self_image.JPG">
</div>
<div class="not-picture">
<h1>Austin Burnett</h1>
<ul>
<li>Software Engineer /</li>
<li>Computer Graphics /</li>
<li>Backend Development</li>
</ul>
<br>
<span>University of Kentucky Alumni</span>
</div>
</div>
</header>
<div class="content-container">
<main>
<section id="about-me">
<h1><a>About Me</a></h1>
<div class="about-me-content">
<p>
I'm a Software Engineer with a passion for Backend Development and Computer Graphics. I am
always on the lookout
for new challenges that can help me grow in my field.
Over the years, I have gained experience in contributing to and implementing complex systems, and I pride
myself on being able to work well both independently and as part of a team. I have a keen eye for detail and
a
drive to constantly improve my skills and stay up to date with the latest industry trends.
<br>
<br>
My expertise includes working with languages such as C++, Python, and Javascript as well as experience with
API development, OpenGL, and Cloud Services. I continually hone these skills through open-source
contributions, personal projects,
and reading.
</p>
</div>
</section>
<section id="projects">
<h1><a>Projects</a></h1>
<div class="project-container">
<div class="project-item">
<a href="https://github.com/austinburnett/instagram-clone" target="_blank"><img alt="Project1 Image"
src="/assets/images/austagram-clone.png"></a>
<h3>Instagram Clone</h3>
</div>
<div class="project-item">
<a href="https://github.com/austinburnett/mini-raytracer" target="_blank"><img alt="Raytracer Image" src="/assets/images/rendered.png"></a>
<h3>Toy Raytracer</h3>
</div>
</div>
</section>
</main>
</div>
<div class="footer-container">
<footer>
<ul>
<li>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/austin-burnett-51249a183/">Linkedin</a>
</li>
<li>
<i class="fa-brands fa-square-github"></i>
<a href="https://github.com/austinburnett">Github</a>
</li>
</ul>
</footer>
</div>
</body>
</html>