-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathindex.html
106 lines (90 loc) · 3.69 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
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- ---------------------------- -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Aos styled_link -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="https://img-premium.flaticon.com/png/512/4594/premium/4594828.png?token=exp=1633490558~hmac=787a7e8f464c8daf3b270f60d5241cfd" />
<title>Modern Cafe</title>
</head>
<body>
<header>
<button class="logo" onclick="sendToHome()">Modern Cafe</button>
<div class="toggle"></div>
<div class="navigation">
<ul>
<li><a href="index.html" class="underLine">Home</a></li>
<li><a href="dishes.html" class="underLine">Dishes</a></li>
<li><a href="combo.html" class="underLine">Our Special Combo's</a></li>
<li><a href="contact.html" class="underLine">Contact</a></li>
<li><a href="review.html" class="underLine">Customer Reviews</a></li>
</ul>
<!-- <div class="social-bar">
<ul>
<li>
<a href="https://facebook.com">
<img src="images/facebook.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://twitter.com">
<img src="images/twitter.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://instagram.com">
<img src="images/instagram.png" target="_blank" alt="" />
</a>
</li>
</ul>
<a href="mailto:[email protected]" class="email-icon">
<img src="images/email.png" alt="" />
</a>
</div> -->
</div>
</header>
<!-- <script type="text/javascript">
function king() {
if (document.body.style.backgroundColor == "grey") {
document.body.style.backgroundColor = "white"
document.body.style.Color = "black"
} else {
document.body.style.backgroundColor = "grey";
document.body.style.Color = "blue"
}
}
</script> -->
<!-- Dark Mode -->
<div align="right">
<img class="btn-dark" src="https://img.icons8.com/ios-filled/40/000000/sun.png" onclick="dark()" />
</div>
<section class="home">
<img src="images/food.jpeg" class="home-img" alt="" />
<div class="home-content" data-aos="fade-up">
<h1>
Hi! I'm Sneha and<br> Welcome to my cafe!
</h1>
<p>
You will get all kinds of delicious food<br> here and We have multiple varieties<br> including Italian and Chinese.<br> Indian food is our primary food.
</p>
<a href="dishes.html" class="btn">Select Your Food Now</a>
</div>
<!-- <button class="btn" id="dark-mode" type="button" onclick="king()">Dark Mode</button> -->
</section>
<script src="js/script.js"></script>
<!-- script files link here -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
// Animation------------------------------------
AOS.init({
duration: 900,
offset: 220,
easing: 'ease-in-out-quad',
});
</script>
</body>
</html>