-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailform.html
More file actions
51 lines (48 loc) · 2.14 KB
/
emailform.html
File metadata and controls
51 lines (48 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/styles.css" />
</head>
<body>
<!-- Modal content -->
<div class="modal-content card">
<span class="close">x</span>
<h2><i class="fa fa-envelope fa-lg" aria-hidden="true"></i> Contact me!</h2>
<hr>
<form id="gform" method="POST" class="" action="https://script.google.com/macros/s/AKfycbwsqIfOwve6lPjha9s9pHerdAoOYqjzfbpWCDQlUu2bOXz1RnAR/exec">
<div class="card-block">
<div class="card-img">
<img src="/assets/images/email.png" alt="type faces from newspaper printing presses">
</div>
<p>
Feel free to reach out.
</p>
<div class="card-txt">
<div class="form-group">
<label class="hidden" for="name">Name: </label>
<input id="name" name="name" required placeholder="Name *" />
</div>
<div class="form-group">
<label class="hidden" for="email">Email:</label>
<input id="email" name="email" required type="email" value="" placeholder="Email *"/>
</div>
<div class="form-group">
<label class="hidden" for="phone">Phone: </label>
<input id="phone" name="phone" placeholder="Phone" />
</div>
<div class="form-group">
<label class="hidden" for="message">Message: </label><br>
<textarea id="message" name="message" required rows="10" placeholder="What's on your mind... *"></textarea>
</div>
</div>
<button class="card-btn"><i class="fa fa-paper-plane"></i> Send</button>
</div>
</form>
</div>
<script src="/assets/scripts.js"></script>
</body>
</html>