-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
46 lines (46 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/basic.css">
<script src="scripts/modernizr-custom.js"></script>
<title>Contact</title>
</head>
<body>
<header>
<img src="images/logo.gif" alt="Jay Skript and the Domsters">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="photos.html">Photos</a></li>
<li><a href="live.html">Live</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<article class="">
<h1>Contact the band</h1>
<form action="" method="get">
<fieldset>
<p>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your name" required="required">
</p>
<p>
<label for="email">Email:</label>
<input type="text" id="email" name="email" placeholder="Your email address" required="required">
</p>
<p>
<label for="message">Message:</label>
<textarea name="message" rows="7" cols="45" id="message" required="required" placeholder="Write your message here."></textarea>
</p>
<input type="submit" value="send">
</fieldset>
</form>
</article>
<script src="scripts/global.js"></script>
</body>
</html>