forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (81 loc) · 3.79 KB
/
index.html
File metadata and controls
86 lines (81 loc) · 3.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<h1> Best <strong> 3 cafe !!</strong> in Glasgow</h1> <nav class= "navtop">
<ul>
<li> <a href="#about" id=aboutt>about us</a></li>
<li><a href="#news"id = newss> news </a></li>
<li> <a href="contact" id=contacts>contact </a></li>
</ul>
</nav> </header>
<section class="int">
<div id="first">
<p>It's not just for coffee - Glasgow's cafes are where you’ll most definitely
experience the city’s famous friendliness, and the scene is filled to the brim
with independent cafes and coffee shops to meet a friend, read a book or simply
just people watch. Here’s a taster of some of the best of the city's cafe scene.
</p> </div>
</section>
<section class=sec>
<div id=social>
<h2>Social bite</h2>
<p> Social Bite first began in 2012 as a sandwich shop in Edinburgh operating as
a Social Business. Now, eight years on Social Bite has grown to include 5 shops
across Scotland and a Central Kitchen.where all of our food products are handmade
and delivered to our shops.</p>
<button><a href=https://shop.social-bite.co.uk/about/>learn more</a>
</button></div>
</section>
<ssection class="third">
<div id=thir>
<h3>Papercup Coffee Company</h3>
<p>
Nobody minds the daily grind when it’s
this aromatic – specialising in beans from Rwanda, Brazil, Peru and
Colombia, Papercup Coffee Company has been in the business of killer
coffee for a decade. It is a West End favourite, all artfully peeling
walls, high ceilings and trendy dangling lanterns, drawing the footsore
with an ever-changing menu of sandwiches, baked goods and delicious
omelettes. Avid customers can buy the beans described above to take
home, and should you fancy learning more about the roasting process,
the shop offers training sessions.
<button><a href=https://www.papercupcoffee.co.uk/>learn more</a></button>
</p>
</srction></div>
<section class=fourth>
<div id=fourt>
<h4> Artisan Roast</h4>
<p>n the thick of the West End, by Kelvingrove Park, Artisan Roast is a
coffee stalwart – it began spreading the good-caffeine word in Broughton
Street, Edinburgh, in 2007. Now Artisan Roast is in Gibson Street, by the
park, as well in both Stockbridge and Bruntsfield, Edinburgh. Beans are bought
directly from farmers, to be roasted in-house many times per week, and served
up in a minimalist, no-frills fashion that lets the java itself take centre
stage. A nice touch – if you’ve got caffeine fiends for friends – is the gift
subscription (from £63) for a monthly 250g bag of beans for six months or a
year.
<button><a href=https://www.artisanroast.co.uk/>learn more</a></button>
</p>
</section></div>
<footer>
<p>Author: Houda</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>