blob: b665627c801bb9f600a94c1bd7ad356fe9a17afe (
plain) (
blame)
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
|
<!doctype html>
<html lang="en"><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="../css/main.css">
<link rel="shortcut icon" href="../i/me.png">
<title>Name's Website: Contact</title></head><body>
<header>
<h1><a id="nav-btn">☰</a>
<a href="..">Get In Contact</a>
<i>Name's Website</i></h1>
</header>
<nav id="menu">
<a href=".." class="btn">Home</a>
<a href="../projects" class="btn">Projects</a>
<a href="../classes" class="btn">Classes</a>
<a href="" class="btn">Contact</a>
<a href="../template" class="btn">Template</a>
<a href="http://github.com/4stc/porter" class="btn">Source</a>
<i>Name / Contact</i>
</nav>
<main>
<h2>Message Me</h2>
<p>I usually respond to messages within a few days.</p>
<form class="grid">
<fieldset>
<legend>Your Info</legend>
<label for="name">Name:</label>
<input type="text" name="name" id="name">
<h3>Optional:</h3>
<label for="chk-mail"><input type="checkbox" name="contact" id="chk-mail">
E-Mail:</label>
<input type="text" name="contact" id="mail" style="display:none">
<label for="chk-phone"><input type="checkbox" name="contact" id="chk-phone">
Phone:</label>
<input type="text" name="contact" id="phone" style="display:none">
<label for="chk-website"><input type="checkbox" name="contact" id="chk-website">
Website:</label>
<input type="text" name="contact" id="website" style="display:none" value="http://">
</fieldset>
<fieldset>
<legend>Your Message</legend>
<label for="msg">Message:</label>
<textarea name="msg" id="msg" rows="6">
</textarea>
</fieldset>
<input type="reset" class="btn" value="Clear" onclick="form_clear()">
<input type="submit" id="submit" class="btn" value="Send">
</form>
</main>
<footer>
<p>Made by Name Surname |
<a href="../i/contact_mobile.png" target="_blank">Mobile Wireframe</a> |
<a href="../i/contact_desktop.png" target="_blank">Desktop Wireframe</a>
</p>
</footer>
<script src="../js/main.js"></script>
</body></html>
|