-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contactpage.html
60 lines (51 loc) · 1.96 KB
/
Contactpage.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
<!--made by lucas lavallee, student ID: 659088900-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="site_style.css">
</head>
<body>
<div style="position: fixed; height: 100%; width: 150px; background-color: grey; top: 0px;">
<br>
<a href="index.html" style="color: goldenrod;"> <p>Home</p></a>
<br>
<a href="Collection.html" style="color: goldenrod;"> <p>Catalogue</p></a>
<br>
<a href="Infopage.html" style="color: goldenrod;"> <p>About us</p></a>
<br>
<a href="Faq.html" style="color: goldenrod;"> <p>FAQ</p></a>
<br>
<a href="Contactpage.html" style="color: goldenrod;"> <p>Contact</p></a>
</div>
<div style="margin-left: 150px; padding-left: 10px; width: auto;">
<form method="POST" style="width: auto;">
<fieldset style="background-color: lightgrey; width: auto;">
Name: <input type="text" name="name">
<br>
Topic of message:
<br>
<input type="radio" name="msg_topic" value="complaint">complaint
<br>
<input type="radio" name="msg_topic" value="complaint">suggestion
<br>
<input type="radio" name="msg_topic" value="complaint">inquiry
<br>
<input type="radio" name="msg_topic" value="complaint">other
<br>
Write message below:
<br>
<textarea name="description" rows="16" cols="40">
Description
</textarea>
<br>
<input type="button" value="Submit"
onclick="alert('this would submit the form')">
</fieldset>
</form>
</div>
</body>
</html>