-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
37 lines (37 loc) · 832 Bytes
/
Copy pathform.html
File metadata and controls
37 lines (37 loc) · 832 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form>
<h3> User Registration </h3>
Email: <br>
<input type="text" name="Email"> <br>
User Name: <br>
<input type="text" name="Username"> <br>
Password:<br>
<input type="text" name="Password"> <br>
Would you like to subscribe to our newsletter?<br>
<input type="radio" name="Subscription" value="Yes"> Yes <br>
<input type="radio" name="Subscription" value="No"> No <br>
Submit:
<input type="button" name="Submit" value="Submit" > <br>
</form>
</body>
<style type="text/css">
input [type="text"]:focus{
background-color:blue;
}
</style>
<style type="button/css">
input[type="button"]: {
border: 2px solid black;
}
input[type="button"]:hover {
padding: 3px;
background-color:violet;
}
html { background:pink}
</style>
</html>