Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#head{
text-align: center;

}
body{
background: #efefef;
}

.nav-flex-row {
display: flex;
flex-direction: row;
justify-content: center;
position: absolute;
z-index: 100;
left: 0;
width: 100%;
padding: 0;
}
.nav-flex-row li {
text-decoration: none;
list-style-type: none;
padding: 60px 15px;

}

.nav-flex-row li a {
font-family: serif,monospace;
color: #000;
font-size: 0.9em;
text-transform: uppercase;
font-weight: 300;
}
.nav-flex-row li a:hover{
background: #efefef
}
49 changes: 48 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,53 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML here -->
<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 &copy; FikrCamp.com</p>
</footer>
</body>

</html>