-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram3.html
More file actions
22 lines (22 loc) · 780 Bytes
/
program3.html
File metadata and controls
22 lines (22 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Program 3</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<form class="form">
<h2>User Login</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="fav-color">Favorite Color:</label>
<input type="color" id="fav-color" name="fav-color" required>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>