-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
49 lines (39 loc) · 1.54 KB
/
Home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fusion Sushi Home</title>
<link rel="stylesheet" href="styleshome.css">
</head>
<body>
<!-- HEADER SECTION -->
<header>
<img src="Imagen/Imagen banner.png" alt="Header Image" class="header-image">
<p>Peruvian Fusion Sushi</p>
</header>
<!-- NAVIGATION SECTION -->
<nav>
<a href="Home.html" >Home</a>
<a href="Menu" >Menu</a>
<a href="AboutUs.html" >About us</a>
<a href="Email.html" >Contact</a>
</nav>
<!-- contents section -->
<main>
<section id="center">
<h2>Home</h2>
<!-- Effect hover -->
<div class="image-container">
<img src="Imagen/Home Imagen.png" alt="Descripción de la imagen">
<div class="overlay">
<div class="text">Sushi, a revered culinary art, originates from Japan and epitomizes precision and creativity. This technique involves expertly combining vinegared rice with fresh seafood, vegetables, and other ingredients to create visually stunning and flavorful dishes. Each piece of sushi is a testament to the skill and dedication of the sushi chef, reflecting centuries of tradition and innovation</div>
</div>
</section>
</main>
<!-- FOOTER SECTION -->
<footer>
<h3>Copyright 2024 by Tomas Torres, All right reserved</h3>
</footer>
</body>
</html>