-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
71 lines (70 loc) · 4.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="./css/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis|Mukta:400,700" rel="stylesheet">
<title>About</title>
</head>
<body>
<wrapper class="d-flex flex-column">
<header class="header">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: transparent;">
<a class="navbar-brand" href="./index.html">
<h2 class="fullname">Matthew Albrecht</h2>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link" href="./index.html">Home</a>
<a class="nav-item nav-link" href="./projects.html">Projects</a>
<a class="nav-item nav-link active" href="./about.html">About <span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="./contact.html">Contact</a>
</div>
</div>
</nav>
</div>
</header>
<main role="main" class="flex-fill">
<div class="jumbotron text-center">
<div class="container">
<div class="intro">
<h1>About Me</h1>
</div>
</div>
</div>
<div class="content">
<div class="container">
<img src="./img/matthew.jpg" class="img-thumbnail mx-auto d-block" width="75%" data-toggle="tooltip" data-placement="right">
<br/>
<p>A software developer with interests in 3d computer graphics and automation.
I created <a href="https://equilibrium.games" target="_blank">Equilibrium Games</a>, a small project creating <a href="https://github.com/EQMG/Acid" target="_blank"></a>Acid</a>, and competing in Ludum Dare game Jams.
</p>
<p class="text-center"><a href="./files/resume.pdf" target="_blank" class="btn btn-light"><i class="fa fa-file-o" aria-hidden="true"></i> View Resume</a></p>
</div>
</div>
</main>
<footer class="footer" style="margin-top: 50px;">
<div class="container text-center">
<div class="footer-icon">
<a href="https://github.com/mattparks" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/mattparks5855" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://twitter.com/Mattparks5855" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fa fa-envelope-o" aria-hidden="true"></i></a>
<a href="./files/resume.pdf" target="_blank"><i class="fa fa-file-o" aria-hidden="true"></i></a>
</div>
</div>
</footer>
</wrapper>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>