-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 939 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 939 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>practice 1</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<form>
<div class="buttons">
<button class="signup-btn">Sign Up</button>
<button class="login-btn">log In</button>
</div>
<h4>Sign Up for Free</h4>
<div class="username">
<input type="text" placeholder="First Name*" required>
<input type="text" placeholder="Last Name*" required>
</div>
<div class="email">
<input type="email" placeholder="Email Address*" required>
</div>
<div class="password">
<input type="password" placeholder="Set A Password*" required>
</div>
<button class="get-started-btn">Get Started </button>
</form>
</body>
</html>