-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
107 lines (90 loc) · 3.04 KB
/
contact.html
File metadata and controls
107 lines (90 loc) · 3.04 KB
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
<!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">
<meta name="description" content="Welcome to Most Extraordinary Hotel In India">
<meta name="keywords" content="Hotel, India hotel, Best hotel ">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="CSS/mobile.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Hotel URS |contact</title>
</head>
<body>
<!-- section header -->
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a href="index.html">URS</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a class="current" href="contact.html">Contact</a></li>
<li><a href="#">SIGN UP</a></li>
</ul>
</div>
</nav>
</header>
<section id="contact-form" class="py-3">
<div class="container">
<h1 class="l-heading"><span class="text-primary">Contact</span> Us</h1>
<p>Please fill out the form below to contact us</p>
<form action="process.php">
<div class="form-group">
<label for="Name">Name</label>
<input type="text" name="Name" id="Name">
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="email" name="Email" id="Email">
</div>
<div class="form-group">
<label for="Message">Message</label>
<textarea name="Message" id="Message"></textarea>
</div>
</form>
<!-- button -->
<!-- <a href="#" class="btn">Submit</a> -->
<button type="submit" class="btn">Submit</button>
</div>
</section>
<!-- section contact info -->
<section id="contact-info" class="bg-dark">
<div class="container">
<div class="box">
<div class="logo">
<i class="fa-solid fa-hotel"></i>
</div>
<div>
<h2>Location</h2>
<p>20 Main st, GT Road India</p>
</div>
</div>
<div class="box">
<div class="logo">
<i class="fa-solid fa-phone"></i>
</div>
<div>
<h2>Phone Number</h2>
<p>(+91) 985-2532552</p>
</div>
</div>
<div class="box">
<div class="logo">
<i class="fa-solid fa-envelope"></i>
</div>
<div>
<h2>Email Adress</h2>
<p>helpdesk@hotelURS.co</p>
</div>
</div>
</div>
</section>
<footer id="main-footer">
<p>Hotel URS ©2022, All Rights Reserved</p>
</footer>
</body>
</html>