forked from fikrcamp/HTML-Blog
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.17 KB
/
index.html
File metadata and controls
68 lines (66 loc) · 2.17 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
<!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>
<ul class="nav-flex-row">
<li class="nav-item">
<a href="#about"> <b>About</b> </a>
</li>
<li class="nav-item">
<a href="#reservation"> <b>Gallery</b></a>
</li>
<li class="nav-item">
<a href="#menu"><b>Menu</b></a>
</li>
<li class="nav-item">
<a href="#shop"><b>Coffee</b></a>
</li>
</ul>
</nav>
</header>
<h1 id="head">Welcome to my coffee</h1>
<br><br>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Latte_and_dark_coffee.jpg/1920px-Latte_and_dark_coffee.jpg"
alt="coffee" width="100%">
<br><br>
<h3>Why coffee!!</h3>
<p><strong> is a drink prepared from roasted coffee beans.
Darkly colored, bitter, and slightly acidic,
coffee has a stimulating effect on humans, primarily due to its caffeine content.
It is the most popular hot drink in the world. </strong>
</p>
<h2>Types of coffee:</h2>
<ul>
<li><strong>Arabica</strong></li>
<li><strong>Robusta</strong></li>
</ul>
<img src="https://news.miami.edu/_assets/images-stories/2022/06/coffeeaging-hero-940x529.jpg" alt="ben" width="100%">
<h2>Unique Benefits of Coffee</h2>
<ol>
<li><strong>Boosts energy levels</strong></li>
<li><strong>Could support brain health</strong></li>
<li><strong>Supports heart health</strong></li>
<li><strong>Could increase longevity</strong></li>
<li><strong>May promote weight management</strong></li>
</ol>
<br><br>
<footer>
<p>Copyright © FikrCamp.com</p>
</footer>
</body>
</html>