forked from Solirius/training_github_pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> -->
<title>My Staff Profile</title>
<script src="https://kit.fontawesome.com/a86c93a2cb.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card-white">
<h1>Oliver Thurston</h1>
<h2>QA Engineer at Solirius Consulting</h2>
<img src="images/Red_Panda.jpg" alt="Profile Picture of Ollie Thurston" width="200px" height="200px" class="img-circle">
<h3>My Profile Photo is a Red Panda.</h3>
<p>Hi, I'm Ollie. I joined Solirius Consulting as a QA Engineer on the 8th of July 2024. I studied Engineering Mathematics at the University of Bristol, and I'm passionate about Data, ML and AI.</p>
<a href="mailto:[email protected]" class="btn-blue">Contact Me</a>
</div>
<div class="card-white">
<h3>Follow Me</h3>
<ul class="list-inline">
<li>
<a href="https://github.com/OLT2000">
<i class="fa-brands fa-github icon-larger"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/thurstxn_/">
<i class="fa-brands fa-instagram icon-larger"></i></a>
</li>
</ul>
</div>
</div>
</body>
</html>