-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
46 lines (43 loc) · 1.79 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
<!doctype html>
<link rel="stylesheet" href="css/style.css">
<html lang="en">
<head>
<title> Contact Me </title>
<style>
body{
background-image: url("images/sunsetcow.jpg");
background-repeat: no;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
</head>
<body>
<div id="mainBody">
<ul style="font-size:20px;">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
<hr>
Contact Me
<hr>
</div>
<div class="flex-container-contact">
<div>
<img src="images/SaintLouis.png" style="float:left; padding-right:25px;" width="350px" height="350px">
</div>
<div style="border-radius: 6%; backdrop-filter: blur(10px) brightness(0.95);">
<p><a href="tel:3149560802"><img src="images/phoneWhiteBody.png" width="100px" height="100px" style="vertical-align:middle;">314-956-0802</a></p>
<p><a href="mailto:patrickmorgan1995@gmail.com"><img src="images/emailWhiteBody.png" width="100px" height="100px" style="vertical-align:middle;">patrickmorgan1995@gmail.com</a></p>
<p><a href="https://www.linkedin.com/in/prmorgan95"><img src="images/LinkedInLogoWhiteBody.png" width="100px" height="100px" style="vertical-align:middle;">prmorgan95</a></p>
</div>
</div>
<footer>
<!-- <script src="scripts/jquery-3.5.1.min.js"></script>
<script src="scripts/script.js"></script> -->
</footer>
</body>
</html>