-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
55 lines (52 loc) · 1.55 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
---
layout: default
---
<head>
<title>Contact me</title>
</head>
<!-- Main -->
<article id="main">
<header class="special container">
<span class="icon fa-envelope"></span>
<h2>Contact me</h2>
<p>Use the form below to give me a piece of your mind.</p>
</header>
<!-- One -->
<section class="wrapper style4 special container small">
<!-- Content -->
<div class="content">
<form>
<div class="row half collapse-at-2">
<div class="6u">
<input type="text" name="name" placeholder="Name" />
</div>
<div class="6u">
<input type="text" name="email" placeholder="Email" />
</div>
</div>
<div class="row half">
<div class="12u">
<input type="text" name="subject" placeholder="Subject" />
</div>
</div>
<div class="row half">
<div class="12u">
<textarea name="message" placeholder="Message" rows="7"></textarea>
</div>
</div>
<div class="row">
<div class="12u">
<ul class="buttons">
<li><input type="submit" class="special" value="Send Message (currently inactive)" /></li>
</ul>
</div>
</div>
<div class="row half">
<div class="12u">
<output name="" for="">All fields are <u>mandatory</u> (or else I won't receive the message)</output>
</div>
</div>
</form>
</div>
</section>
</article>