-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
87 lines (79 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hotel BK | Contact</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css">
</head>
<body>
<header>
<nav>
<div class="container">
<div class="logo">
<h1><a href="home.html">HBK</a></h1>
</div>
<ul>
<li><a href="home.html">Home</a></li>
<li><a class="current" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section>
<div class="container">
<div class="contact-form">
<h1> <span> Contact </span>Us </h1>
<h3>Please fill out the form below to contact us </h3>
</div>
<div class="form">
<form action="action.php">
<label for="name">Name
<input type="text">
</label>
<br>
<br>
<label for="email">Email
<br>
<input type="email">
</label>
<br>
<br>
<label for="message">Message
<br>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</label>
</form>
</div>
</section>
<section id="ste">
<!-- <div class="container"> -->
<div class="icon-1">
<i class="fas fa-hotel fa-3x"></i>
<h2>Location</h2>
<h3>123 Main st,Lahore</h3>
</div>
<div class="icon-1">
<i class="fas fa-phone fa-3x"></i>
<h2>Phone Number</h2>
<h3>(123) 444-444</h3>
</div>
<div class="icon-1">
<i class="fas fa-envelope fa-3x"></i>
<h2>Phone Number</h2>
<h3>(123) 444-444</h3>
<!-- </div> -->
</div>
</section>
<div class="clr"></div>
<footer id="foote">
<div class="foot">
<p>Hotel BK © 2020, All RIghts Reserved</p>
</div>
</footer>
</div>
</body>
</html>