-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
52 lines (42 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Bullet Coffee Recipe</title>
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<style type="text/css">
body {
font-family: 'Sofia';
}
h1 {
font-family: 'Comic Neue';
}
</style>
</head>
<body>
<h1>Bulletproof Coffee Recipe</h1>
<img src="https://irenamacri.com/wp-content/uploads/2014/11/bulletproof_coffee_recipe.jpg" height="300px" width="300px">
<div>
<p>
Bullet coffee is a creamy, delicious drink that will fuel you with energy.
Whether you’re looking for keto coffee or just something new to start your mornings,
this drink is for you!
</p>
</div>
<h2>Ingredients :</h2>
<ul>
<li>Instant Coffee Powder</li>
<li>Butter</li>
<li>Water</li>
</ul>
<h2>Procedure :</h2>
<ol>
<li>Boil water for 5 minutes</li>
<li>Add instant Coffe Powder</li>
<li>Add two table spoons of butter</li>
<li>Blend all together for 2 minutes</li>
<li>Pour in coffe mug</li>
<li>Drink Coffee</li>
</ol>
</body>
</html>