-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (131 loc) · 4.35 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en-US">
<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" />
<link
href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" type="text/css" />
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<title>Home Page</title>
</head>
<body>
<!--menu-->
<nav>
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">
<a href="index.html"><img src="logo.png" alt="home" /></a>
</label>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about_us/About-us.html">About Us</a></li>
<li><a href="food_menu/food_menu.html">Food Menu</a></li>
<li><a href="contact_us/contact_us.html">Contact Us</a></li>
</ul>
</nav>
<!--full screen image-->
<div class="container">
<section class="full_image">
<div class="image img">
<div class="slogan">
<h2>
Coffee make <b>PERFECT</b> <br />
Food make <b>BETTER</b>
</h2>
</div>
</div>
</section>
</div>
<!--description and business hour-->
<section class="container box_container">
<div class="box description">
<h2>Our Description</h2>
<p>
This Cafe name as PFB cafe and
<b>served beverage, snack, dessert and main dish</b>.<br />We had
start out business since 1987 and we never stop improve our product
and services.
</p>
</div>
<div class="box business_hour">
<h2>Our Business Hour</h2>
<p>
We work on 7 days per week:<br />
<b
>Monday - Friday : 10a.m. - 9p.m.<br />
Saturday - Sunday : 9a.m. - 12a.m.</b
><br />
</p>
</div>
</section>
<!--event card box-->
<section class="container eve_container">
<div class="card">
<div class="imgBx">
<img src="image/food1.jpg" alt="western food" />
</div>
<div class="food_content">
<h2 style="font-size: 20px;">Coming Event:National Day</h2>
<p>
At <b>31 August</b>, national day we provided <b>15% discount</b> on
main dish.<br />
See You at 31 August!!!
</p>
</div>
</div>
<div class="card">
<div class="imgBx">
<img src="image/food2.jpg" alt="Dessert" />
</div>
<div class="food_content">
<h2 style="font-size: 20px;">Coming Event:Malaysia Day</h2>
<p>
At <b>16 September</b> which is Malaysia day and we decide to give
away <b>one dessert</b> to let customer to choose after purchase
<b>atleast one main dish.</b>
</p>
</div>
</div>
<div class="card card3">
<div class="imgBx">
<img src="image/food3.jpg" alt="beverage" />
</div>
<div class="food_content">
<h2 style="font-size: 20px;">Coming Event:Owner Birthday</h2>
<p>
At <b>25 November</b> owner Ang Wei Jin <b>birthday</b> and him
decide to give away
<b>100 cup of coffee to first 100 customers</b>.Please come early!!!
</p>
</div>
</div>
</section>
<!--footer-->
<div class="footer">
<footer class="footer_content">
<div class="left-col">
<a href="https://www.facebook.com/" class="fab fa-facebook-f"></a>
<a href="https://twitter.com/explore" class="fab fa-twitter"></a>
<a
href="https://www.instagram.com/?hl=en"
class="fab fa-instagram"
></a>
<a href="https://www.youtube.com/" class="fab fa-youtube"></a>
</div>
<div class="right-col">
<img
src="image/card.png"
alt="card icon"
style="height: 50px; width: 100%;"
/>
</div>
</footer>
</div>
</body>
</html>