-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
44 lines (40 loc) · 1.17 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
---
layout: page
title: Contact
permalink: /contact/
---
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px; /* 5px rounded corners */
width: 46%;
display: inline-block;
}
/* Add rounded corners to the top left and the top right corner of the image */
span {
border-radius: 5px 5px 0 0;
}
</style>
<html>
<body>
<a href="mailto:cwhitmore88@gmail.com">
<div class="card">
<span style="width:50px; height: 75px; background-color: purple" href="mailto:cwhitmore88@gmail.com"></span>
<div class="container">
<h4><b>Email Me</b></h4>
<p>cwhitmore88@gmail.com</p>
</div>
</div>
</a>
<!-- <a href="https://github.com/CarltonW/CarltonW.github.io/issues/new?assignees=CarltonW&labels=&template=typo-or-bug-report.md&title=">
<div class="card">
<span style="width:50px; height: 75px; background-color: purple" href="mailto:jakenherman7@gmail.com"></span>
<div class="container">
<h4><b>See a Typo?</b></h4>
<p>Submit a bug on my GitHub</p>
</div>
</div>
</a> -->
</body>
</html>