forked from Badabee/Tourist-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorner.html
93 lines (82 loc) · 2.93 KB
/
corner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourano</title>
<link rel="stylesheet" href="corner.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<section class="grow">
<nav>
<div class="logo">
<h4>Tourano</h4>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="corner.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<div class="connect">
<h1>CONTACT</h1><br>
<span class="con">
<h3><a href="index.html">Home | </a></h3>
<h3><a href="corner.html">Contact</a></h3>
</span>
</div>
</section>
<section class="detail">
<h4>CONTACT</h4>
<h1>Contact us to get <br> free support.</h1>
<form class="details" id="formality">
<div class="detail1">
<textarea name="contact" class="formality" id="condar" placeholder="Write your message here" required></textarea>
</div>
<div class="detail2">
<input type="text" class="item" name="subject" placeholder="Subject" required><br>
<input type="text" class="item" name="name" placeholder="Name" required><br>
<input type="email" class="item" name="email" id="ema" placeholder="Email" required><br>
<input id="boli" type="button" value="Send">
</div>
</form>
</section>
<!--FOOTER-->
<footer class="bottom">
<div class="footers">
<div class="footer1">
<h3>TOURANO</h3>
<p>Get the most of tourism from a glance, providing you with unforgettable experiences of a lifetime.</p>
</div>
<div class="footer2">
<h3>USEFUL LINKS</h3>
<p><a href="about.html">About</a></p>
<p><a href="corner.html">Contact</a></p>
<p><a href="blog.html">Blog</a></p>
</div>
<div class="footer3">
<h3>CONTACT INFO</h3>
<p>[email protected]</p>
<p>+234 90 21 217 890</p>
<p>16 Madison street, Ikeja Lagos Nigeria</p>
</div>
<div class="footer4">
<h3>SOCIAL MEDIA</h3>
<p><i class=" icon fa fa-facebook"></i><a href="#">Facebook</a></p>
<p><i class=" icon fa fa-instagram"></i><a href="#">Instagram</a></p>
<p><i class=" icon fa fa-twitter"></i><a href="#">Twitter</a></p>
<p> <i class=" icon fa fa-linkedin"></i><a href="#">LinkedIn</a></p>
</div>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>