-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.46 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birthday Wishes</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
}
label {
font-weight: bold;
}
textarea, input[type="text"], input[type="date"], input[type="time"], input[type="submit"] {
width: 100%;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Birthday Wishes</h1>
<form id="wishesForm">
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" cols="50"></textarea><br>
<label for="contact">Contact Number:</label><br>
<input type="text" id="contact" name="contact"><br>
<label for="date">Date:</label><br>
<input type="date" id="date" name="date"><br>
<label for="time">Time:</label><br>
<input type="time" id="time" name="time"><br>
<input type="submit" value="Send Wishes">
</form>
</div>
<script src="script.js"></script>
</body>
</html>