-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms
More file actions
25 lines (21 loc) · 783 Bytes
/
forms
File metadata and controls
25 lines (21 loc) · 783 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FORMS</title>
<body>
<h1>Hello, This is a survey about your music taste using HTML</h1>
</body>
<form action="http://www.example.come/login.php">
<p>
Username:
<input type="text" name="username" size="15" maxlength="30" required="required">
</p>
<p>
Password:
<input type="password" name="password" size="15" maxlength="30" required="required">
</p>
<button type="submit"><a href="log-in.html">Log In</a></button>
<button type="submit"><a href="sign-up.html">Sign Up</a></button>
</form>
</head>
</html>