-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.01 KB
/
index.html
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
<html>
<head>
<title>Signup Form for Startup X</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<main>
<section class="testimonial">
<img src="https://avatarfiles.alphacoders.com/105/105223.jpg" />
<h3> Mohit saha </h3>
<p>
A 19 years old boy who is here to help your local business to grow on internet.
</p>
</section>
<form class="signup-form">
<h3> Signup Form </h3>
<div>
<input type="email" name="email" placeholder="Email Address">
<input type="password" name="password" placeholder="Password">
</div>
<div>
<input type="checkbox" name="agreement">
<span>I Agree with the terms of service</span>
</div>
<button type="submit"> SIGNUP </button>
</form>
</main>
</body>
</html>