-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (86 loc) · 3.58 KB
/
index.html
File metadata and controls
92 lines (86 loc) · 3.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style/responsive.css">
<link rel="stylesheet" href="style/owl.carousel.min.css">
<link rel="stylesheet" href="style/owl.theme.default.min.css">
<title>SOULFLIX</title>
</head>
<body>
<header>
<div class="container">
<h2 class="logo">SOULFLIX</h2>
<nav>
<a href="">Home</a>
<a href="">Series</a>
<a href="">Movies</a>
<a href="">Documentaries</a>
</nav>
</div>
</header>
<main>
<div class="movie-main">
<div class="container">
<h3 class="title">INTERSTELLAR</h3>
<p class="synopsis">The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.</p>
<div class="buttons">
<button role="button" class="button">
<a href="https://www.netflix.com/de-en/title/70305903" target="_blank">
<i class="fa-solid fa-play"></i>WATCH NOW</a>
</button>
<button role="button" class="button">
<a href="https://www.themoviedb.org/movie/157336-interstellar" target="_blank">
<i class="fa-solid fa-circle-info"></i>MORE INFORMATIONS</a>
</button>
</div>
</div>
</div>
</main>
<div class="movies-carousel">
<div class="owl-carousel owl-theme">
<div class="item">
<img class="box-movies" src="img/i02soul.jpeg" alt="" srcset="">
<p>Soul (2020)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i03.jpeg" alt="" srcset="">
<p>Chico Xavier (2010)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i04.jpeg" alt="" srcset="">
<p>The Matrix (1999)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i05.jpeg" alt="" srcset="">
<p>The Book of Eli (2010)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i06.jpeg" alt="" srcset="">
<p>End Game (2018)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i07.jpeg" alt="" srcset="">
<p>Rick and Morty (2013)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i08.jpeg" alt="" srcset="">
<p>The Creative Brain (2019)</p>
</div>
<div class="item">
<img class="box-movies" src="img/i09.jpeg" alt="" srcset="">
<p>DMT: The Spirit Molecule (2010)</p>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/04ac25e8ba.js" crossorigin="anonymous"></script>
<script src="js/jquery.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/setup.js"></script>
<footer class="footer" text>
<p><a href="https://www.linkedin.com/in/juliana-tagami-sampaio-de-souza-929792171/" target="_blank">© Developed By Juliana Tagami</a></p>
</footer>
</body>
</html>