-
Notifications
You must be signed in to change notification settings - Fork 21
/
contact.html
66 lines (61 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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" />
<link
rel="stylesheet"
href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"
/>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
// Initialize the date picker
$("#appointment-date").datepicker();
});
</script>
<title>contact</title>
<link rel="stylesheet" href="contact.css" />
</head>
<body>
<div class="contactbox">
<form>
<input
type="text"
class="input-field"
placeholder="Enter your user name"
/>
<br />
<br />
<input type="email" class="input-field" placeholder="Enter Email ID" />
<br />
<br />
<input type="text" class="input-field" placeholder="Subject" />
<br />
<br />
<input
type="text"
class="input-field"
id="appointment-date"
placeholder="Appointment Date"
/>
<br />
<br />
<textarea
name="explain"
id="explain"
cols="30"
rows="10"
placeholder="ENter your message "
></textarea>
<br />
<br />
<a href="contact.html">
<input class="btn" type="button" name value="submit"
/></a>
</form>
</div>
</body>
</html>