-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
119 lines (107 loc) · 5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="Description" content="Hi, I'm Lisa. I'm a front-end software engineer.">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon-LB.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-8013291-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-8013291-2');
</script>
<title>Lisa Blunt | Contact</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa-envelope,.fa-github, .fa-twitter, .fa-linkedin {font-size:25px}
h1, body {font-family: "Montserrat", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url("/img/indigo-gradient.jpg");
min-height: 100%;
background-position: center;
background-size: cover;
}
h1 {
color: white;
text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px black;
font-size:60px
}
a {
text-decoration: none;
}
/* mouse over link */
a:hover {
color: magenta;
}
body {
color: white;
text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px black;
font-size:20px;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-bottom">
<div class="w3-bar w3-black w3-card w3-right-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-indigo w3-large w3-indigo" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="/index-v3.html" class="w3-bar-item w3-text-white w3-button w3-hide-small w3-padding-large w3-hover-indigo">Home</a>
<a href="/about-v3.html" class="w3-bar-item w3-text-white w3-button w3-hide-small w3-padding-large w3-hover-indigo">About</a>
<a href="/projects-v3.html" class="w3-bar-item w3-text-white w3-button w3-hide-small w3-padding-large w3-hover-indigo">Projects</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-indigo w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="/index-v3.html" class="w3-bar-item w3-text-white w3-button w3-padding-large">Home</a>
<a href="/about-v3.html" class="w3-bar-item w3-text-white w3-button w3-padding-large">About</a>
<a href="/projects-v3.html" class="w3-bar-item w3-text-white w3-button w3-padding-large">Projects</a>
</div>
</div>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-middle">
<!-- Header -->
<header class="w3-container" style="padding:64px 16px">
<h1 class="w3-margin w3-jumbo"><center><b>Contact</b></center></h1>
<p><center>Send me a message using the form below.</center></p>
<center>
<p><form method="POST" action="https://formspree.io/[email protected]">
<br>
<br>
<input type="email" name="email" placeholder="Your email">
<br>
<br>
<textarea name="message" placeholder="Your message"></textarea>
<br>
<br>
<button type="submit">Send</button></p>
</form>
</center>
<footer class="w3-container w3-padding-64 w3-center">
<a href="/contact"><i class="fa fa-envelope w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="Contact"></i></a>
<a href="http://www.github.com/lisablunt" target="_blank" rel="noopener"><i class="fa fa-github w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="GitHub"></i></a>
<a href="http://www.twitter.com/lisa_blunt" target="_blank" rel="noopener"><i class="fa fa-twitter w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="Twitter"></i></a>
<a href="http://www.linkedin.com/in/lisablunt" target="_blank" rel="noopener"><i class="fa fa-linkedin w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="LinkedIn"></i></a>
<a href="https://www.last.fm/user/BeLisaBee" target="_blank" rel="noopener"><i class="fa fa-lastfm w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="last.fm"></i></a>
<a href="https://www.instagram.com/baddiebeenailz" target="_blank" rel="noopener"><i class="fa fa-instagram w3-hover-opacity w3-text-indigo" style="text-shadow: 0 0 25px white;" title="Instagram"></i></a>
</footer>
</div>
</div>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>