-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
26 lines (26 loc) · 898 Bytes
/
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
<!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>Contact page</title>
<link rel="stylesheet" href="./myquiz.css">
</head>
<body>
<main class="main0">
<div class="box">
<h3>Have a complaint? Contact Us</h3>
<label>Name
<input type="text" required>
</label><br>
<label>Number
<input type="text" required>
</label><br>
<label>Send us a message <textarea name="file" cols="30" rows="5" placeholder="Type in your message here"></textarea></label>
</div>
</main>
<br>
<marquee behavior="scroll" direction="right">This is just for educational purposes only, study your course curriculum for exam and test</marquee>
</body>
</html>