-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHomepage.html
59 lines (57 loc) · 2.6 KB
/
Homepage.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
<!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">
<title>Home Page</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-light bg-light justify-content-between">
<div class="container-fluid">
<!-- <div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="" width="60" height="45" class="d-inline-block align-text-left">
</a>
</div> -->
<ul class="nav navbar-nav">
<li> <a class="navbar-brand" href="#">
<img src="images/logo.png" alt="" width="70" height="40" class="d-inline-block align-text-left">
</a></li>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Rooms</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<form class="navbar-form navbar-left" action="/action_page.php">
<div class="input-group">
<input type="text" class="form-control me-2" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
<div id="trailer" class="section d-flex justify-content-center embed-responsive embed-responsive-16by9">
<video controls autoplay muted src="images/Homepagevideo.mp4" class="embed-responsive-item">
</video>
</div>
</nav>
<div class="container">
<h1>Welcome To Our Hotel</h1>
<p>This is some text.</p>
</div>
</body>
</html>