-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Albert Stjärne</title>
</head>
<body>
<header class="showcase">
<div class="content">
<img src="logo_ccc.png" class="logo" alt="Albert Stjärne">
<div class="title">
coffee, carrots & cakes
</div>
<div class="text">
that is right, we serve the best coffee, carrots and cakes you can ever imagine
</div>
</div>
</header>
<!-- Services -->
<section class="services">
<div class="container grid-3">
<div>
<i class="fa fa-coffee fa-3x"></i>
<h3>Coffee</h3>
<p>We only brew the coffee we like the best, walk our street for a lovely smell or better yet come inside for a cup of your own</p>
</div>
<div>
<i class="fas fa-carrot fa-3x"></i>
<h3>Carrots</h3>
<p>All carrots served are organic and lovely orange, freshly harvested from our backgarden</p>
</div>
<div>
<i class="fas fa-cookie-bite fa-3x"></i>
<h3>Cakes</h3>
<p>Do you remember grandmas cake, ours are just like that</p>
</div>
</div>
</section>
<!-- About -->
<section class="about bg-light">
<div class="container">
<div class="grid-2">
<div class="center">
<i class="fas fa-couch fa-7x"></i>
</div>
<div>
<h3>Hang out with us</h3>
<p>We got the cosy sofas and music, please come in and make our day</p>
</div>
</div>
</div>
</section>
<footer class="center bg-dark">
<p>Albert Stjärne © 2018</p>
</footer>
</body>
</html>