-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (39 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css"
/>
<link rel="stylesheet" href="style/home.css" />
<link rel="stylesheet" href="media/genStyle/style.css" />
<title>Movies</title>
</head>
<body>
<header>
<div class="logo">Movies</div>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./pages/movie.html">Show</a></li>
<li><a href="./pages/anime.html">anime</a></li>
<li><a href="./pages/wish.html">Wish</a></li>
</ul>
</nav>
</header>
<section class="main">
<h1>Welcome To Our Movies Website</h1>
<h2>We Provide Information About Shows And Anime Movie</h2>
<div class="btns-container">
<button id="goto"><a href="./pages/anime.html">Have Fun</a></button>
</div>
</section>
</body>
</html>