-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (80 loc) · 2.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Royal Deluxe home</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/nivo-lightbox.css">
<link rel="stylesheet" href="css/nivo_themes/default/default.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/transition.css">
<!-- <link rel="stylesheet" href="css/transition.css"> -->
</head>
<body>
<!-- preloader section -->
<section class="preloader">
<div class="sk-spinner sk-spinner-pulse"></div>
</section>
<!-- navigation section -->
<section class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="#" class="navbar-brand">Royal Deluxe</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#" class="smoothScroll">HOME</a></li>
<li><a href="foodgallery.html" class="smoothScroll">FOOD GALLERY</a></li>
<li><a href="specialmenu.html" class="smoothScroll">MENU</a></li>
<!-- <li><a href="copiedmenu.html" class="smoothScroll">SPECIAL MENU</a></li> -->
<li><a href="chefs.html" class="smoothScroll">CHEFS</a></li>
<li><a href="contact.html" class="smoothScroll">CONTACT</a></li>
</ul>
</div>
</div>
</section>
<!-- home section -->
<section id="home" class="parallax-section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1 class="title">ROYAL DELUXE</h1>
<h2 class="title">Taste the difference</h2>
<a href="#gallery" class="smoothScroll btn btn-default">LEARN MORE</a>
</div>
</div>
</div>
</section>
<!-- copyright section -->
<section id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h3>Royal Deluxe</h3>
<p>Copyright ©Royal Deluxe Restaurant
</div>
</div>
</div>
</section>
<!-- JAVASCRIPT JS FILES -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.parallax.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/nivo-lightbox.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>