-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.html
74 lines (67 loc) · 2.98 KB
/
author.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function () {
$("head").load("head.html");
$("head").append( "<title>MC 311 Tool-About the Author</title>");
});
</script>
<title>MC 311 Tool-About the Author</title>
</head>
<body>
<div id="preloader">
<div id="status"> </div>
</div>
<div id="navbar"></div>
<div class="container my-3">
<h1 class="display-6">About the Author</h1>
</div>
<div class="container">
<div class="row my-3">
<div class="col-lg-7 col-12 about--content">
<div class="row">
<p class="mx-2">Hello world, I'm Thorrell Turner, a Washington Metropolitan based Software Developer
transitioning into tech after 15+ years in public relations & customer service. </p>
<p class="mx-2">For more of my work, you can visit my portfolio below.</p>
</div>
<div class="row">
<div class="col mx-2">
<a href="https://www.thorrellt.com/" target="_blank" rel="noopener noreferrer"
alt="My Portfolio" title="www.thorrellt.com" class="btn btn-danger">My Portfolio</a>
</div>
</div>
</div>
<div class="col-lg-5 col-12">
<div class="row">
<img src="./assets/profile_pic.png" class="about--profile-pic mx-auto "
alt="Thorrell's Profile Picture" />
</div>
<div class="row mx-5 my-3">
<div class="col about--link">
<a href="https://github.com/thorrellt" class="btn btn-primary " target="_blank"
rel="noopener noreferrer" alt="My Github" title="github.com/thorrellt">
<i class="bi bi-github"></i>
</a>
</div>
<div class="col about--link">
<a href="https://www.linkedin.com/in/thorrellt/" class="btn btn-primary" target="_blank"
rel="noopener noreferrer" alt="My Linkedin" title="linkedin.com/in/thorrellt">
<i class="bi bi-linkedin"></i>
</a>
</div>
<div class="col about--link">
<a href="mailto:[email protected]" class="btn btn-primary " target="_blank"
rel="noopener noreferrer" alt="My email" title="[email protected]">
<i class="bi bi-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="./scripts/scripts.js" type="module"></script>
</html>