-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
61 lines (59 loc) · 2.34 KB
/
contact.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
<!DOCTYPE html>
<!-- Copyright Samuel R. Powell, June 24, 2021 -->
<html>
<head>
<title>Contact Me</title>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header class="container">
<div class="row">
<h1 class="col-sm-6">Samuel Powell</h1>
<nav class="col-sm-6m text-right">
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="education.html">Education</a>
<a href="experience.html">Experience</a>
<a href="credits.html">Credits</a>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="row">
<h2 class="col-md-12">Contact Info</h2>
</div>
</section>
<section class="container">
<div class="col-sm-6">
<h5>Contact Information</h5>
<ul>
<li>E-Mail: samuel.ryan.powell[at]gmail.com</li>
<li><a href="files/publickey.asc" download="spowell_publickey.asc">My public key</a></li>
</ul>
</div>
</section>
<footer class="container">
<div class="row">
<p class="col-sm-4">© 2023 Samuel Powell</p>
</div>
<div class="col-sm-2">
<a href="https://github.com/powellsr/" target="_blank">GitHub</a>
</div>
<div class="col-sm-2">
<a href="https://linkedin.com/in/samuel-r-powell/" target="_blank">LinkedIn</a>
<!--
<div class="col-sm-2">
<a href="https://medium.com/">Medium</a>
</div>
<div class="col-sm-2">
<a href="https://tunein.com/podcasts/">Podcast</a>
</div>
-->
</footer>
</body>
</html>