-
Notifications
You must be signed in to change notification settings - Fork 0
/
placementofdemand.html
92 lines (80 loc) · 1.98 KB
/
placementofdemand.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<style>
body {
background-image: url('https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg');
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
}
form {
max-width: 500px;
margin: auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border: 2px solid #000;
border-radius: 10px;
}
h2 {
text-align: center;
font-size: 28px;
margin-bottom: 20px;
}
label {
display: block;
margin-top: 20px;
font-size: 18px;
}
input, textarea {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
margin-top: 5px;
font-size: 16px;
}
button {
margin-top: 20px;
padding: 10px 20px;
background-color: #2196F3;
color: white;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
}
</style>
<!-- -->
<!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" href="placementholde.css">
</head>
<body>
<nav>
<div class="navbar">
<a href="main.html">Home</a>
<a href="#">About</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<form id="myForm">
<h2>Contact Us</h2>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phoneNumber">PhoneNumber</label>
<input type="number" id="phoneNumber" name="email" required>
<label for="message">Enter Your Demand:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
<div id="result"></div>
<script src="placemntholder.js"></script>
</body>
</html>