-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformhw.html
executable file
·38 lines (33 loc) · 1.37 KB
/
formhw.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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/formhw.css">
<link rel="stylesheet" href="css/normalize.css ">
</head>
<body>
<form action="formhw.html" method="GET" id="form1">
<p id="form-heading">
<strong>Try it free for 7</strong>
<span>starting at $333 a month</span>
</p>
<div class="clearfix">
<div id="column1">
<label for="firstname">First name</label>
<input type="text" id="firstname" name="user_fname">
</div>
<div id="column2">
<label for="lastname">Last name</label>
<input type="text" id="lastname" name="user_lname">
</div>
</div>
<label for="email">Email</label>
<input type="email" id="email" name="user_email">
<input type="checkbox" name="service" value="condition" id="condition"/> I want to heart from You about serivces
<button type="submit" name="submit"><strong>Clam Free Trial</strong></button>
</form>
</body>
</html>