-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (49 loc) · 2.31 KB
/
index.html
File metadata and controls
59 lines (49 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Form</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="entire">
<div>
<h1>Just say Hello!</h1>
<h3>JUST LET US KNOW MORE ABOUT YOU</h3>
<form action="#" method="post">
<!-- <div id="h">
<input id="H" type="Home" value="Home">
<input id="B" type="Blog" value="Blog">
<input id="A" type="About" value="About">
<input id="C"type="Contact"value="Contact">
</div> -->
<div class="form">
<div class="n">
<label for="fullname">First Name:</label><br>
<input class="design"type="text" id="fullname" name="fullname"placeholder="FIRST NAME" required><br><br>
<label for="fullname">Last Name:</label><br>
<input class="design"type="text" id="fullname" name="fullname"placeholder="LAST NAME" required><br><br>
</div>
<br>
<div id="e">
<label for="email">Email:</label><br>
<input class="design"type="email" id="email" name="email" placeholder="EMAIL" required><br><br>
<label for="contact">Contact:</label><br>
<input class="design"type="password" id="contact" name="contact" placeholder="CONTACT"><br><br>
</div>
<label for="message">Message:</label><br>
<textarea class="design"id="message" name="message" rows="4" cols="50"></textarea><br><br>
<input id="f"type="submit" value="Submit">
</div>
</div>
</form>
<DIV CLASS = "Detail">
<h1>Contact <br>Information</h1><BR>
<h3>CSED,MNNIT ALLAHABAD <BR>PRAYAGRAJ - 21104</h3><BR>
<H3>CALL US:+91-451258745</H3>
<H1>FOLLOW US</H1>
</DIV>
</body>
</div>
</html>