-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 4.1 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 4.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<title>Home</title>
</head>
<body>
<section class="wrap">
<header>
<a href="index.html">
<img class="logo" src="images/logo.png">
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<img class="home-img" src="images/homePhoto.jpg">
<div class="home-text">
<h1>About Us</h1>
<p>The original Red Cafe Bistro – this is where everything began. Our Glasgow restaurant is the place where our family created and perfected the authentic dining experience that we are famous for today.</p>
<p>With several menus packed full of traditional dishes, we have secured our place as the favourite, family-friendly restaurant in the Glasgow community.</p>
<p>Our menus and setting provide the perfect atmosphere for any occasion; from romantic meals, to family parties, to graduation celebrations and more. At Red Cafe Glasgow, our friendly staff and stunning decor ensure you’ll feel like one of the family every time you visit.</p>
<p>We can't wait to see you.</p>
</div>
<div class="home-text">
<h2>Red Cafe@Home</h2>
<p>Red Cafe@Home is a brand new dining experience that allows you to enjoy your favourite restaurant dishes from the comfort of your own home.</p>
<p>Red Cafe@Home dining allows you to preorder dishes for a chilled delivery to your home to be eaten at your own convenience – taking the hassle out of cooking.</p>
<p>There’s also starters, desserts and drinks to bring even more of the restaurant experience in an At Home dining setting.</p>
<p>Staying at home doesn’t need to mean cooking for yourself. Take a look at our Red Cafe @ Home website and preorder today!</p>
</div>
<ul class="home-list">
<li>Buchanan Street</li>
<li>Glasgow</li>
<li>G1 1AA</li>
<li>Tel : 014114145888</li>
<li>email: info@redcafebistro.com</li>
</ul>
<img class="home-img" src="images/homePhoto2.jpg">
<div class="home-text">
<h2>Red Cafe, Buchanan Street</h2>
<p>Situated directly across from the Underground, Red Cafe is truly the home of authentic dining in the heart of Glasgow. Following the same ethos as our original restaurant, we serve delicious, traditional food from breakfast through to dinner, 7 days a week.</p>
</div>
<div class="home-text">
<h3>The Dining Experience</h3>
<p>Our Glasgow City Centre restaurant is always filled with a buzzing atmosphere, happy diners and the smell of beautiful, authentic food. We promise that no matter what time of the day you dine with us, we’ll always leave you wanting more from the Red Cafe</p>
</div>
<ul class="home-list">
<li>Monday - 12:00-22:00</li>
<li>Tuesday - 12:00-22:00</li>
<li>Wednesday - 12:00-22:00</li>
<li>Thursday - 12:00-22:00</li>
<li>Friday - 12:00-23:00</li>
<li>Saturday - 12:00-23:00</li>
<li>Sunday - 12:00-22:00</li>
</ul>
</main>
<footer>
<p>All Content © Red Cafe Bistro 2021</p>
</footer>
</section>
</body>
</html>