-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
41 lines (33 loc) · 1.07 KB
/
forms.html
File metadata and controls
41 lines (33 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>forms</title>
<link rel="icon" href="./download.jpeg" type="image/x-icon">
<style>
body{
background-color: black;
color: aliceblue;
}
button{
background-color: brown;
text-align: center;
}
</style>
</head>
<body>
<h1 style="text-align: center;"><i>FORMS</i></h1>
<form action="url" method="get">
<label for="1">first Name:</label>
<input type="text" placeholder="enter your first name" id="1"><br><hr>
<label for="2">last Name:</label>
<input type="text" placeholder="enter your last name" id="2"><br><hr>
<label for="3">Email: </label>
<input type="email" placeholder="enter your email" id="3"><br><hr>
<label for="4">password:</label>
<input type="password" placeholder="enter your password" id="4"><br><hr>
<button type="submit">submit</button>
</form>
</body>
</html>