-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
68 lines (60 loc) · 2.54 KB
/
contact.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
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar" >
<div class="navbar-style">
<link rel = "icon" href = "https://img.icons8.com/color/48/000000/drop-of-blood.png" type = "image/x-icon">
<div class="symbole"><img src="https://img.icons8.com/color/48/000000/drop-of-blood.png"/>Blood Donation</div>
<section class="more">
<!--
<input type="text" placeholder=" search nearest blood bank" class="input-field1">-->
<a href="index.html" class="li">Home</a>
<a href="about.html" class="li">About</a>
<a href="donate.html" class="li">Donate</a>
<a href="registration.html" class="li">Register</a>
<a href="contact.html" class="li">Contact</a>
<a href="" class="li"><i class="fa fa-bars"></i></a>
</section>
</div>
</nav>
<br><br><br><br><br><br>
<div class="registerForm">
<form >
<center><h2>Contact Us</h2></center>
<div class="input-container">
<i class="fa fa-user icon"></i>
<input class="input-field" type="text" placeholder="Name" name="usrnm">
</div>
<div class="input-container">
<i class="fa fa-envelope icon"></i>
<input class="input-field" type="text" placeholder="Email" name="email">
</div>
<div class="input-container">
<i class="fa fa-envelope icon"></i>
<input class="input-field" type="text" placeholder="Contact" name="Contact">
</div>
<div class="input-container">
<i class="fa fa-key icon"></i>
<input class="input-field" type="text" placeholder="City" name="city">
</div>
<div class="input-container">
<i class="fa fa-key icon"></i>
<input class="input-field" type="textarea" placeholder="Message" name="msg">
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
<div class="footer">
<p>Footer</p>
</div>
</body>
</html>