-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
112 lines (107 loc) · 4.69 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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 - Great collection of high quality
films, straight from the filmmakers online.">
<meta name="keywords" content="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 | Home</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" class="active">Home</a></li>
<li><a href="movies.html">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>
<section class="cta-banner">
<div class="cta-container">
<h1>Connecting Film-Lovers</h1>
<p>Discover a great collection of high quality <br>
films, straight from the filmmakers online.</p>
<a href="movies.html" class="cta">Start watching</a>
</div>
</section>
<div class="cta-container_small-screen">
<h1>Connecting Film-Lovers</h1>
<p>Discover a great collection of high quality <br>
films, straight from the filmmakers online.</p>
<a href="movies.html" class="cta">Start watching</a>
</div>
<section class="new-arrivals">
<h2>New Arrivals</h2>
<div>
<a href="product-drstrange.html"><img src="images/homepage/Minions-mini.png" alt="Product picture of The Minions Rise of Gru" class="product_item"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="images/homepage/JW-mini.png" alt="Product picture of Jurrasic World Dominion" class="product_item"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="images/homepage/Thor-mini.png" alt="Product picture of Thor Love and Thunder" class="product_item"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="images/homepage/UWMT-mini.png" alt="Product picture of Unbearable weight of Massive Talent" class="product_item"></a>
</div>
</section>
<section class="top-picks">
<h2>Top Picks</h2>
<div>
<a href="product-drstrange.html"><img src="images/homepage/mom-cover.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/homepage/tp-cover.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/homepage/marryme-cover.png" alt="Product picture of Marry Me" class="product_item product_item-big"></a>
</div>
<div>
<a href="product-drstrange.html"><img src="images/homepage/nope-cover.png" alt="Product picture of Nope" class="product_item product_item-big"></a>
</div>
</section>
<section class="coming-soon">
<h2>Coming Soon</h2>
<div>
<img src="images/homepage/Glass-onion.png" alt="Product picture of Glass Onion">
</div>
<div>
<img src="images/homepage/wakanda.png" alt="Product picture of Wakanda Forever">
</div>
<div>
<img src="images/homepage/the-menu.png" alt="Product picture of The Menu">
</div>
<div>
<img src="images/homepage/devotion.png" alt="Product picture of Devotion">
</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>