-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>MovieMinds</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script defer src="scripts/app.js"></script>
</head>
<body>
<header>
<div class="hero-overlay">
<img class="hero-img" src="photos/heroIMG.jpg" alt="hero img" />
<div class="hero-text">
<h1>Welcome to MovieMinds</h1>
<p>Your go-to site for movie reviews and ratings</p>
</div>
</div>
<div class="menuBar">
<nav>
<ul>
<li class="item"><a href="index.html">Home</a></li>
<li class="item"><a href="AboutUs.html">About Us</a></li>
<li class="item"><a href="ContactUs.html">Contact Us</a></li>
<li class="item"><a href="login.html">Login</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h1 class="headTitle">Our Movies</h1>
<div class="movieGrid" id="movieGrid">
<a href="AddReview.html?id=1">View Details</a>
<a href="AddReview.html?id=2">View Details</a>
<a href="AddReview.html?id=3">View Details</a>
<a href="AddReview.html?id=4">View Details</a>
<a href="AddReview.html?id=5">View Details</a>
<a href="AddReview.html?id=6">View Details</a>
<a href="AddReview.html?id=7">View Details</a>
<a href="AddReview.html?id=8">View Details</a>
</div>
</main>
<footer>
<hr />
<p>Created By Ghiada & Lama & Zainab & Joury ®</p>
</footer>
</body>
</html>