-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoseCafe.html
55 lines (47 loc) · 1.58 KB
/
RoseCafe.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>RoseCafe</title>
<link rel = "stylesheet" type ="text/css" href="css/style.css">
<meta name = "viewport" content = "width = device-width ,initial-scale =1.0">
<link rel = "stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav>
<div class = "row clearfix">
<img src = "images/logo5.png" alt = "" class = "logo">
<ul class = "main-nav animate__animated animate__bounceInDown" id ="main-nav-js">
<li><a href = "#" class = "active" >Home</a></li>
<li><a href = "Menu.html">Menu</a></li>
<li><a href = "AboutUs.html">About Us</a></li>
<li><a href = "feedback.html">Feedback</a></li>
<li><a href = "Add2Cart.html">Your Cart</a></li>
</ul>
<a class = "mobile-nav-icon js--nav-icon"><i class = "ion-navicon-round"></i></a>
<a href = "#" class = "mobile-icon" onclick = "slideshow()"> <i class="fa fa-bars"></i> </a>
</div>
</nav>
<div class ="main-content-header">
<h1> WELCOME TO <span class="colorchange">ROSE CAFE</span>.<br>
HOUSE OF CAKE LOVERS.</h1>
<a href ="Video.html" class = "btn btn-full">View More</a>
</div>
</header>
<script type = "text/javascript">
function slideshow()
{
var x= document.getElementById("main-nav-js");
if (x.style.display === "none")
{
x.style.display = "block";
}
else
{
x.style.display = "none";
}
}
</script>
</body>
</html>