-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.html
101 lines (99 loc) · 5.12 KB
/
movies.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
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
93
94
95
96
97
98
99
<!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">
<meta name="description" content="Square Eyes - All of our movies.">
<meta name="keywords" content="action, comedy, drama, fantasy, horror, mystery, romance, thriller, sci-fi,movies, movies online, big collection, buy movies, rent movies, high quality">
<meta name="author" content="Alexander Weidemann">
<link href="/css/style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/c7b67ab2c9.js" crossorigin="anonymous"></script>
<title>Square Eyes | Movies</title>
</head>
<body>
<header>
<div class="nav-position">
<a href="index.html" class="logo"><img src="images/Logo.png" alt="Square Eyes logo"></a>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="movies.html" class="active">Movies</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<a href="cart.html"><img src="images/cart.png" class="cart" alt="Shopping cart"></a>
</div>
</header>
<main>
<img src="/images/movies/thor-header.png" alt="Banner image of Thor Love and Thunder" class="cta-banner product_thor-banner">
<section class="movie-sort">
<a href="movies.html" class="cta-tag active-tag">All</a>
<a href="movies-action.html" class="cta-tag">Action</a>
<a href="movies-comedy.html" class="cta-tag">Comedy</a>
<a href="movies-drama.html" class="cta-tag">Drama</a>
<a href="movies-fantasy.html" class="cta-tag">Fantasy</a>
<a href="movies-horror.html" class="cta-tag">Horror</a>
<a href="movies-mystery.html" class="cta-tag">Mystery</a>
<a href="movies-romance.html" class="cta-tag">Romance</a>
<a href="movies-thriller.html" class="cta-tag">Thriller</a>
<a href="movies-sci-fi.html" class="cta-tag">Sci-fi</a>
</section>
<h1 class="page_h1-title">Our Movies</h1>
<section class="new-arrivals product_sorted">
<div>
<a href="product-drstrange.html"><img src="/images/movies/1-batman.png" alt="Product picture of The Batman" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/2-bullet.png" alt="Product picture of Bullet Train" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/3-doctor.png" alt="Product picture of Doctor Strange in the Multiverse of Madness" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/4-jurassic.png" alt="Product picture of Jurassic Park" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/5-soho.png" alt="Product picture of Last Night in Soho" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/6-marryme.png" alt="Product picture of Marry me" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/7-minions.png" alt="Product picture of Minions The Rise of Gru" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/8-nope.png" alt="Product picture of Nope" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/9-outfit.png" alt="Product picture of The Outfit" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/10-thor.png" alt="Product picture of Thor Love and Thunder" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/11-topgun.png" alt="Product picture of Top Gun Maverick" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="/images/movies/12-uwmt.png" alt="Product picture of The Unbearable Weight of Massive Talent" class="product_item product_item-big"></a>
</div>
</section>
</main>
<footer>
<div class="social-position">
<p class="copy-2022">© 2022 Square Eyes</p>
<nav>
<ul class="nav-list">
<li><a href="https://www.facebook.com/" class="fa-brands fa-facebook"><span>Facebook</span></a></li>
<li><a href="https://www.instagram.com/" class="fa-brands fa-instagram"><span>Instagram</span></a></li>
<li><a href="https://twitter.com/" class="fa-brands fa-twitter"><span>Twitter</span></a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>