-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus_5.html
66 lines (54 loc) · 2.17 KB
/
contactus_5.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
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
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONTACT US</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="icon" type="image/x-icon" href="./favicon_io/favicon-32x32.png">
<link rel="stylesheet" href="contactus_5.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper1">
<!--NAVIGATION-->
<nav style="background:url(./images/school_page.jpeg)100%;">
<img src="./images/new-removebg-preview.png" class="img" alt="logo">
<!-- <label>Neeraj Meena</label> -->
<ul>
<li><a href="index.html">HOME</a></li>
</ul>
</nav>
<!--END OF NAVIGATION-->
<header>
<center>
<h1 id="admission2"> <span class="text-theme">Contact Form</span>
<hr color="orangered" width="80px" size="4px" />
</h1>
</center>
</header>
<div class="container">
<form>
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="blank">Select Option</option>
<option value="australia">Australia</option>
<option value="bangladesh">Bangladesh</option>
<option value="india">India</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<footer>
<p>Copyright © 2022, Neeraj Meena</p>
</footer>
</body>
</html>