-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
86 lines (72 loc) · 3.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Personal Profile Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<nav class="main-nav">
<ul class="nav">
<li class="name">Brian Walker</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<header>
<img src="images/me2.jpg" alt="Picture of Brian Walker" class="profile-image">
<h1 class="tag name">Hello, I’m Brian.</h1>
<p class="tag location">My home is Detroit, Michigan.</p>
</header>
<main class="flex">
<section class="card" id="contact">
<h2>Send e-mail to bwalker206@gmail:</h2>
<p>Thank you for visiting my profile page. Feel free to contact me using the form provided below</p>
<!-- email form from https://www.freecontactform.com/form-guides/html-email-form -->
<link href="css/contact-form.css" rel="stylesheet">
<div class="fcf-body">
<div id="fcf-form">
<h3 class="fcf-h3">Contact us</h3>
<form id="fcf-form-id" class="fcf-form-class" method="post" action="php/contact-form-process.php">
<div class="fcf-form-group">
<label for="Name" class="fcf-label">Your name</label>
<div class="fcf-input-group">
<input type="text" id="Name" name="Name" class="fcf-form-control" required>
</div>
</div>
<div class="fcf-form-group">
<label for="Email" class="fcf-label">Your email address</label>
<div class="fcf-input-group">
<input type="email" id="Email" name="Email" class="fcf-form-control" required>
</div>
</div>
<div class="fcf-form-group">
<label for="Message" class="fcf-label">Your message</label>
<div class="fcf-input-group">
<textarea id="Message" name="Message" class="fcf-form-control" rows="6" maxlength="3000" required></textarea>
</div>
</div>
<div class="fcf-form-group">
<button type="submit" id="fcf-button" class="fcf-btn fcf-btn-primary fcf-btn-lg fcf-btn-block">Send Message</button>
</div>
<div class="fcf-credit" id="fcf-credit">
Simple HTML email form provided by: <a href="https://www.freecontactform.com" target="_blank">FreeContactForm.com</a>
</div>
</form>
</div>
</div>
</section>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/Insomniac_Mike" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/bwalker206/" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/bwalker206" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2020, Brian Walker</p>
</footer>
</body>
</html>