forked from leemahh11/cinemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.51 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 1.51 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
<!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">
<title>Cinemy </title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/fcd7ae277e.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class ="logo">
<h3> Cinemy</h3>
</div>
<div class="nav">
<ul>
<li><a href="#"> Home</a></li>
<li> <a href="#">Movies</a></li>
<li><a href="#"> Genere</a></li>
<li><a href="#"> About us </a></li>
</ul>
</div>
<div class="users">
<i class="fa-solid fa-bell"></i>
<i class="fa-solid fa-magnifying-glass"></i>
<a href="#">login</a>
</div>
</header>
<section>
<div class="got">
<div class="got-page">
<span> Now streaming </span>
<div class="firstline"></div>
<h1>Game Of Thrones </h1>
<p>Action | Fantasy | Adventure</p>
<div class="btn1">
<a href="#"><i class="fa-solid fa-circle-play"></i></i>Watch Trailer</a>
<a href="#"><i class="fa-solid fa-circle-plus"></i></i> Add to favorite</a>
</div>
</div>
</div>
<div class="poster">
<img src="images/Game-of-Thrones.jpg">
</div>
</section>
</body>
</html>