-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (53 loc) · 2.59 KB
/
index.html
File metadata and controls
73 lines (53 loc) · 2.59 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">
<!--this code links the ccs file with the html file so they both edit the same website-->
<link rel="stylesheet" href="styles.css">
<!-- this code decides the title for the website -->
<head>
<meta name="description" content="Cafe">
<meta name="keywords" content="HTML, CSS">
<meta name="author" content="Oscar Norman">
<title>Oscars Cafe</title>
</head>
<body>
<!-- this code is for the heading of the website-->
<h1>Oscars Cafe</h1>
<!--this is the code that makes the small image of the left of screen -->
<img src="https://cdn0.iconfinder.com/data/icons/hotel-icons-set-in-cartoon-style/512/a1092-512.png" width="100" alt="coffee logo">
<!-- this code makes the text a curtain colour -->
<h6> yesssssss</h6>
<section style="color:greenyellow;">look we make the best coffee and tea along with some snacks that will leave you feeling ralaxed nad heaevnly</section>
<br>
<footer style="color:greenyellow;">so come on down to oscars cafe where you can feel good with good realxing coffee</footer>
<br>
<p style="color:greenyellow;">
everyone loves this cafe it is relaxing and just the thing to calm you down after a long day some come down to the greatest cafe. Our coffee beans are ethically sourced by well payed workers in south armerica where we grow all our coffee beans
</p>
<br>
<!-- this is code for the big image -->
<img src="https://thumbor.forbes.com/thumbor/960x0/https%3A%2F%2Fspecials-images.forbesimg.com%2Fdam%2Fimageserve%2F1072007868%2F960x0.jpg%3Ffit%3Dscale" width="460" height="345" alt="coffee">
<h2>Menu</h2>
<!-- this is the list for the menu -->
<ul>
<li>flat white $5</li>
<li>Cappuccino $5</li>
<li>Cafe Latte $5</li>
<li>Vanilla Latte $6</li>
<li>Caramal Latte $6</li>
<li>Long Black $5</li>
<li>Short black $5</li>
<li>Macchiato $5</li>
<li> Butterscotch Affogato $6</li>
<li>Piccolo Latte $4</li>
<li>Belgian style hor choclate $6</li>
<li>Hot Mocha $6</li>
<li>White hot choclate $6</li>
<li>White Hot Mocha $6</li>
<li>Butterscotch Hot Choclate $7</li>
</ul>
<!-- this code decides what the background image is -->
</body>
<!-- this code decides what the background image is -->
<footer>The copy right of this website belongs to Oscars Cafe inc
</footer>
</html>