-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
112 lines (104 loc) · 5.58 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
<!DOCTYPE html>
<html lang="en-US">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<!--bootstrap--><link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&family=Montserrat:ital,wght@1,100&display=swap"
rel="stylesheet">
<!--fonts/icons--><link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/69f28465c2.js" crossorigin="anonymous"></script>
<title>Contact Lauren</title>
</head>
<body class="gradient">
<header>
<div class="scale-100">
<h1 class="">Lauren Libretti</h1>
<hr class="hr-expand">
<nav class="navbar navbar-expand-sm navbar-light sm-light">
<a class="navbar-brand" href="#"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse md:text-2xl" id="navbarTogglerDemo02">
<ul class="navbar-nav mx-auto mt-2 mt-lg-0 d-flex">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="webdev.html">Web Dev</a>
</li>
<li class="nav-item">
<a class="nav-link" href="lx.html">Lighting</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="Contact.html">Contact <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<hr>
</div><!--container-->
</header>
<section>
<div class="container">
<div class="grid-container shadow-lg p-3 mx-auto bg-body rounded">
<p>Connect with me to learn more about my skills as a developer and lighting designer. <br>I love
talking shop and I'd be happy to talk with you about your project needs.
</p>
<form action="https://formspree.io/mzbjqdlo" method="POST">
<label for="fname">name:
</label>
<br>
<input type="text" id="fname" name="fname" placeholder="name">
<br>
<label for="email">email:
</label>
<br>
<input type="text" id="email" name="email" placeholder="email">
<br>
<label for="message">message:</label>
<br>
<input type="text" id="message" name="message" placeholder="message">
<br>
<button type="submit" onclick="handleClick()">submit</button>
<br>
</form>
</div><!--grid-container-->
</div><!--container-->
</section>
<footer>
<div class="footer">
<a href="https://www.linkedin.com/in/lauren-libretti/"> <i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/lalibretti"> <i class="fab fa-github"></i></a>
<a href="https://www.laurenlibretti.com/" class="lights light-lighting"><i class="far fa-lightbulb"></i></a>
<a href="https://www.facebook.com/profile.php?id=5138727" class="fa"> <i class="fab fa-facebook-f"></i> </a>
<a href="https://www.instagram.com/lalibretti/" class="in insta-instagram"><i
class="fab fa-instagram"></i></a>
<a href="mailto:lalibretti616@gmail.com"><i class="far fa-envelope"></i></a>
<p class=" footer items-center">made with ♥ by Lauren</p>
</div><!--footer-->
</footer>
<script type="text/javascript">
function handleClick() {
alert('Please fill out all forms');
}
</script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>