-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
77 lines (65 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact</title>
<script src="https://kit.fontawesome.com/3790183da0.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="javascript.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Titillium+Web&display=swap" rel="stylesheet">
</head>
<style>
</style>
<body>
<div class="main">
<section id="header">
<div id="topnav">
<a href="index.html" class="active">Home</a>
<div id="myLinks">
<a href="about-me.html">About Me</a>
<a href="projects.html">My Projects</a>
<a href="experience.html">Experience</a>
<a href="contact.html">Contact</a>
<a href="https://github.com/rraabe?tab=repositories" target="_blank" rel="noopener">GitHub</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</section>
<div style="margin-top: 3vw;" class="textbox">
<div class="text-in-textbox">
</p>
<p>
I look forward to hearing from you!
</p>
</div>
</div>
<a class="centered" style="color: white"><i class="fas fa-phone-alt fa-2x"></i></a>
<p class="centered" style="color: white;">804-499-0587</p>
<br />
<a class="centered" style="color: white"><i class="fas fa-envelope fa-2x"></i></a>
<p class="centered" style="color: white;">[email protected]</p>
<div id="nav-arrow-container">
<button class="nav-arrows" onclick="window.location.href = 'index.html#bio-pic';">
«<span class="nav-arrow-text">HOME</span>
</button>
<button class="nav-arrows" onclick="window.location.href = 'https://github.com/rraabe?tab=repositories';">
<span class="nav-arrow-text">MY GITHUB</span>»
</button>
</div>
<section id="footer">
<div id="footer-links">
<a href="https://www.facebook.com/richard.raabe.7">
<i class="fab fa-facebook-square fa-3x"></i>
</a>
<a href="https://www.linkedin.com/in/richard-raabe-84688280/">
<i class="fab fa-linkedin fa-3x"></i>
</a>
</div>
</section>
</div>
</body>
</html>