-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
65 lines (61 loc) · 2.03 KB
/
Copy pathform.html
File metadata and controls
65 lines (61 loc) · 2.03 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!--
**************************************************
created by : Chitrangana Singh
title : Mechxtrons
beginning date : 01/10/16
end date :
contact : +91-7611898897
e-mail : chitrangna.pallavi.singh@gmail.com
© 2005-2011 CHITRANGANA SINGH ALL RIGHTS RESERVED
**************************************************
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>form</title>
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style2.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="js/javascript/js"></script>
</head>
<body style="background-color: #f8f8f8;">
<div id="form">
<form action="action.php">
<fieldset>
<legend>Personal Info</legend>
<div id="name">
<label>Name</label>
<input type="name" name="name" required="required">
</div>
<br>
<div id="contact">
<label>Contact</label>
<input type="number" name="contact">
</div>
<br>
<div id="email">
<label>E-mail</label>
<input type="e-mail" name="email" required="required">
</div>
<br>
<div id="suggestions">
<label>Suggestions</label>
<textarea name="message" rows="10" cols="50">Wanna give any suggestions?</textarea>
</div>
<br>
<div id="subscribe">
<button type="submit">Subscribe</button>
</div>
</fieldset>
</form>
</div>
</body>
</html>