-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment3.html
More file actions
52 lines (52 loc) · 1.53 KB
/
Assignment3.html
File metadata and controls
52 lines (52 loc) · 1.53 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
<html>
<head>
<style>
body{
font-family:'Arial,sans-serif';
padding: 40px;
}
input,select,textarea{
width: 100%;
padding: 10px;
margin: 10px 0;
border: 2px solid #0e0d0d;
}
button{
padding: 10px 20px;
border: none;
cursor:pointer;
}
.form-container{
padding: 20px;
max-width:400px;
margin:auto;
border-radius: 4px;
}
</style>
</head>
<body class="form-container">
<div class-container>
<h2>Send us a sweet little note</h2>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name">
<br>
<label for="email">Your email</label>
<input type="email" id="email" name="email">
<br>
<label for="subject">Subject</label>
<select id="subject" name="subject">
<option value="general">Get a qoute!</option>
<option value="feedback">Feedback</option>
<option value="support">Support</option>
</select>
<br>
<label for="mesage">What's up?</label>
<br>
<textarea></textarea>
<br><br>
<button>Send message</button>
</form>
</div>
</body>
</html>