-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect.html
107 lines (106 loc) · 5.49 KB
/
connect.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
<!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.0" />
<meta property="og:title" content="Tyler Lehren - Connect" />
<meta property="og:type" content="website" />
<meta property="og:image" content="images//ogImage.png" />
<meta property="og:url" content="https://www.tylerlehren.com/connect.html" />
<title>Tyler Lehren - Connect</title>
<link rel="shortcut icon" type="image/jpg" href="images/tlFav.svg"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/utilities.css" />
<link rel="stylesheet" href="css/connect.css" />
<link rel="stylesheet" href="css/menu.css" />
<script type="module" src="scripts/projects.js"></script>
<script type="module" src="scripts/data.js"></script>
<script type="module" src="scripts/script.js"></script>
</head>
<body>
<!-- header -->
<header class="header py-2">
<div class="container">
<a href="/" class="logo"><img src="images/tlWordMark.svg" alt="logo"></a>
<div class="headerRight">
<button class="navToggle"><span class="hamburger"></span></button>
<nav class="nav">
<ul class="navMenu">
<li class="navItem"><a href="index.html" class="navLink">Intro</a></li>
<li class="navItem"><a href="index.html#work" class="navLink">Work</a></li>
<li class="navItem"><a href="who.html" class="navLink">Who</a></li>
<li class="navItem"></i><a href="connect.html" class="navLink">Connect</a></li>
</ul>
<div class="menuContact">
<a href="mailto:[email protected]" class="link">[email protected]</a>
<a href="tel:2035566329" class="link">(203)556-6329</a>
<p><i class="fas fa-map-marker-alt fa-lg"></i>Burlington, VT</p>
<div class="socialLinks">
<a href="https://github.com/tlehren" target="_blank"><i class="fab fa-github fa-lg"></i></a>
<a href="https://www.behance.net/tylerlehren" target="_blank"><i class="fab fa-behance fa-lg"></i></a>
<a href="https://dribbble.com/tlehren" target="_blank"><i class="fab fa-dribbble fa-lg"></i></a>
<a href="https://www.linkedin.com/in/tylerlehren/" target="_blank"><i class="fab fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
</nav>
</div>
</div>
</header>
<main class="main">
<!-- contact form -->
<section class="connect">
<div class="container py-4">
<h1>Let's Connect</h1>
<p>Have a project idea that you'd like to talk about? Let's get the ball rolling.</p>
<form action="/success.html" data-netlify="true">
<fieldset class="formGrid">
<legend>Contact form</legend>
<div class="form-control">
<label for="firstName">First Name<span class="req">*</span></label>
<input type="text" name="firstName" id="firstName" placeholder="Your name" required>
</div>
<div class="form-control">
<label for="lastName">Last Name<span class="req">*</span></label>
<input type="text" name="lastName" id="lastName" placeholder="Your last name" required>
</div>
<div class="form-control">
<label for="email">Email<span class="req">*</span></label>
<input type="email" name="email" id="email" placeholder="Your email" required>
</div>
<div class="form-control">
<label for="phone">Phone</label>
<input type="tel" name="phone" id="phone" placeholder="Your number">
</div>
<div class="form-control full">
<label for="message">Your Message<span class="req">*</span></label>
<textarea name="message" id="" cols="1" rows="1" placeholder="Start typing here" required></textarea>
</div>
<button type="submit" class="btn full">Send It</button>
</fieldset>
</form>
</div>
</section>
</main>
<!-- footer -->
<footer class="footer">
<section class="footerBottom">
<div class="container flex py-4">
<div class="socialLinks">
<a href="https://github.com/tlehren" target="_blank"><i class="fab fa-github fa-lg"></i></a>
<a href="https://www.behance.net/tylerlehren" target="_blank"><i class="fab fa-behance fa-lg"></i></a>
<a href="https://dribbble.com/tlehren" target="_blank"><i class="fab fa-dribbble fa-lg"></i></a>
<a href="https://www.linkedin.com/in/tylerlehren/" target="_blank"><i class="fab fa-linkedin fa-lg"></i></a>
</div>
<p>Copyright © Tyler Lehren 2021</p>
</div>
</section>
</footer>
</body>
</html>