-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Persian Recipe Website</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<ul class="navbar">
<li><a class="active" href="./index.html">Home</a></li>
<li><a href="./html/about.html">About</a></li>
<li><a href="./html/history.html">History</a></li>
<li><a href="./html/recipes.html">Recipes</a></li>
<li><a href="./html/contact.html">Contact</a></li>
</ul>
<main class="home-container">
<h1 class="home-header">Taste<br/><b>Tradition</b></h1>
<div class="video-container">
<video autoplay muted loop playsinline style="pointer-events: none;">
<source src="./media/food.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</main>
</html>