-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
43 lines (40 loc) · 1.15 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
<html>
<head>
<title>Business Website</title>
<link href="contact.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="navbar">
<a class="active" href="#home"><b>Rachna</b></a>
<div class="navbar-right">
<a href="home.html">Home</a>
<a href="academic.html">Academics</a>
<a href="contact.html">Contact Me</a>
</div>
</div>
<div class="container">
<div>
<form>
<h3>Enter your details</h3>
<label for="fname">Full Name:</label>
<input type="text" id="fname" name="firstname" placeholder="Your Full name..">
<label for="lname">Mobile Number</label>
<input type="text" id="mobile" name="mobile" placeholder="Your Mobile Number..">
<label for="lname">Email Id</label>
<input type="text" id="email" name="email" placeholder="Your email id ..">
<input type="submit" value="Submit">
</form>
<hr color=#00008B>
</div>
<div class="cont-part">
<h3>Contact Me</h3>
<b>Email : [email protected]</b>
</div>
</div>
<footer>
<div class="footer">
<p>© Copyright <u>First Project</u></p>
</div>
</footer>
</body>
</html>