-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (88 loc) · 2.56 KB
/
Copy pathindex.html
File metadata and controls
112 lines (88 loc) · 2.56 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
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
108
109
110
111
112
<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8">
<title>Moduly - Easily make responsive page modules</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<article>
<h1>Moduly main article</h1>
<p>Moduly is awesome and we would like you to contact us. That's what the form in this article is for. Just fill in your name, emailaddress (we swear we won't spam you, really, this form is just here for convenience) and a message, though we don't care what you have to say.</p>
<p>Actually, just fill in your name and emailaddress and you'll be fine.</p>
<form class="contact-form">
<h2>Contact us</h2>
<ul>
<li>
<label for="name">Name</label>
<input id="name" type="text" />
</li>
<li>
<label for="email">Emailaddress</label>
<input id="email" type="email" />
</li>
<li class="message-box">
<label for="message">Message</label>
<textarea id="message"></textarea>
</li>
<li>
<button>Send your message</button>
</li>
</ul>
</form>
</article>
<aside>
<h1>Moduly sidebar</h1>
<p>You don't look at forms in an article? Don't worry, we have one in our sidebar as well.</p>
<form class="contact-form">
<h2>Contact us</h2>
<ul>
<li>
<label for="name">Name</label>
<input id="name" type="text" />
</li>
<li>
<label for="email">Emailaddress</label>
<input id="email" type="email" />
</li>
<li class="message-box">
<label for="message">Message</label>
<textarea id="message"></textarea>
</li>
<li>
<button>Send your message</button>
</li>
</ul>
</form>
</aside>
</main>
<footer>
<h1>Moduly footer</h1>
<p>Just to be sure, we want you to see this form one more time. You know, in case you missed it.
<form class="contact-form">
<h2>Contact us</h2>
<ul>
<li>
<label for="name">Name</label>
<input id="name" type="text" />
</li>
<li>
<label for="email">Emailaddress</label>
<input id="email" type="email" />
</li>
<li class="message-box">
<label for="message">Message</label>
<textarea id="message"></textarea>
</li>
<li>
<button>Send your message</button>
</li>
</ul>
</form>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="moduly.js"></script>
</body>
</html>