-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
110 lines (104 loc) · 3.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Easy Access to Books.">
<meta name="keywords" content="book reading, books,online books,informational,motivational,historical">
<meta name="author" content="Umar Ashraf">
<title>Contact Us</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1 style="font-family:'Brush Script MT',cursive; font-size: 34px">Library Titan</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="summary.html">Summary</a></li>
<li class="current"><a href="contact.html">Contact Us</a></li>
<li><a href="login.html">LogIn</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcaus">
<div class="container">
<h1 class="dark">Wanna Contact Us..</h1>
<p class="dark">Fill The Form Below And Hit The Send Button</p>
</div>
</section>
<br>
<div class="cntform">
<p class="dark">Send Email</p>
<form class="contact-form" action="contactform.php" method="post">
<input type="text" name="name" class="form-control" placeholder="Full Name.."><br>
<input type="text" name="mail" class="form-control" placeholder="E-Mail.."><br>
<input type="text" name="subject" class="form-control" placeholder="Subject.."><br>
<textarea name="message" class="form-control" placeholder="Message"></textarea><br>
<button type="submit" name="Submit" class="button">Send Mail</button>
</form>
</div>
<br>
<hr>
<br>
<div>
<h1 class="dark">    Also Connect With Us On Social Media..</h1>
<br>
<div class="socialdiv">
<a href="#" target="_blank" style="
height: 100px;
width: 100px;
background-color:#f5f6fa;
border-radius: 50px;
text-align:center;
margin: 8px;
line-height: 110px;
box-shadow: 1px 4px 2px 2px #dcdde1;">
<i class="fa fa-2x fa-facebook"></i>
</a>
<a href="https://twitter.com/iUmarAshraf" target="_blank" style="
height: 100px;
width: 100px;
background-color:#f5f6fa;
border-radius: 50px;
text-align:center;
margin: 8px;
line-height: 110px;
box-shadow: 1px 4px 2px 2px #dcdde1;">
<i class="fa fa-2x fa-twitter"></i>
</a>
<a href="https://instagram.com/meumarashraf" target="_blank" style="
height: 100px;
width: 100px;
background-color:#f5f6fa;
border-radius: 50px;
text-align:center;
margin: 8px;
line-height: 110px;
box-shadow: 1px 4px 2px 2px #dcdde1;">
<i class="fa fa-2x fa-instagram"></i>
</a>
<a href="#" target="_blank" style="
height: 100px;
width: 100px;
background-color:#f5f6fa;
border-radius: 50px;
text-align:center;
margin: 8px;
line-height: 110px;
box-shadow: 1px 4px 2px 2px #dcdde1;">
<i class="fa fa-2x fa-linkedin"></i>
</a>
</div>
</div>
<br>
<footer>
<p>Library Titan, Copyright © 2021</p>
</footer>
</body>
</html>