-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
executable file
·54 lines (53 loc) · 2.27 KB
/
contact.html
File metadata and controls
executable file
·54 lines (53 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Evan Partidas">
<title>Evan Partidas</title>
<!-- Custom styles for this template -->
<link href="headbar.css" rel="stylesheet">
<link href="base.css" rel="stylesheet">
<link href="contact.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,700" />
</head>
<body>
<div class="site-wrapper">
<div class="masthead" id="headerContent">
</div>
<div>
<h1>Contact</h1>
<h7>Please feel free to reach out</h7>
</div>
<div class="contact-card-container">
<div class="transparent-block contact-card">
<h2>Social Media</h2>
<a class="btn contact-card-item" href="https://www.linkedin.com/in/evan-partidas-2029aa214">LinkedIn</a>
<a class="btn contact-card-item" href="https://github.com/EvanPartidas">Github</a>
</div>
<div class="transparent-block contact-card">
<h2>Business Inquiries</h2>
<h5>Email: inquiries@evanpartidas.com</h5>
<a class="btn" href="mailto:inquiries@evanpartidas.com">Compose Email</a>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.js"></script>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="custom.js"></script>
<script>
$(function(){
$("#headerContent").load("headbar.html");
waitForEl("#ContactNavItem",function(){
$("#ContactNavItem").addClass("active");
});
});
</script>
</body>
</html>