-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainPage.html
97 lines (97 loc) · 3.79 KB
/
mainPage.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
<!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">
<link rel="stylesheet" href="css/navigationBar.css">
<link rel="stylesheet" href="css/mainPage.css">
<link rel="stylesheet" href="css/footer.css">
<title>World of Movies</title>
</head>
<body>
<div id="nav-bar">
<ul>
<li><a href="mainPage.html">Home</a></li>
<li><a href="moviesTVs.html">Movies & TVs</a></li>
<li><a href="buyProducts.html">Store</a></li>
<li><a href="queryForm.html">Feedback</a></li>
<li><a href="siteMap.html">Site Map</a></li>
<li><a href="developerInfo.html">Developer</a></li>
</ul>
</div>
<div id="cover">
<div id="cover-img"></div>
</div>
<div id="main-content">
<form>
<p>Create an account to start your membership</p><hr>
<label for="fName">First Name</label>
<input type="text" class="inputs" name="fName" id="fName"><br>
<label for="sName">Second Name</label>
<input type="text" class="inputs" name="sName" id="sName"><br>
<label for="email">E-mail</label>
<input type="email" class="inputs" name="email" id="email"><br>
<label for="pwd">Password</label>
<input type="password" class="inputs" name="pwd" id="pwd"> <br>
<input type="button" value="Sign Up" name="signUp" id="signUp">
</form>
<div id="block-why">
<p id="title">Why Us?</p><br>
<p id="tit-para">Watch on your TV, Phone, Laptop, Xbox, Playstation, and many more.</p>
</div>
</div>
<div id="final-content">
<div class="block"><a id="margin-movies" href="#">Movies</a></div>
<div class="block"><a id="margin-tvs" href="#">TVs</a></div>
</div>
<footer>
<hr>
<div class="content">
<ul>
<p>NEED HELP?</p>
<li><a href="#">Customer Service</a></li>
<li><a href="#">Package Plans</a></li>
<li><a href="#">Subcriptions</a></li>
<li><a href="#">Buy Tickets</a></li>
<li><a href="#">Our Supporters</a></li>
</ul>
</div>
<div class="content">
<ul>
<p>VISIT US</p>
<li><a href="#">Getting Here</a></li>
<li><a href="#">Parking</a></li>
<li><a href="#">Food Store</a></li>
<li><a href="#">Seating Area</a></li>
</ul>
</div>
<div class="content">
<ul>
<p>COMPANY</p>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div class="content">
<ul>
<p>SOCIAL</p>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Youtube</a></li>
</ul>
</div>
<div id="subcribe-mail">
<p id="title2">Stay up to date with us</p>
<p id="content">Subcribe to our newsletter today to get most recent news, updates, events, and special offers. We respect your privacy and your information is safe and will never be shared.</p>
<form id="sub-form">
<input type="email" placeholder="Your E-mail Address" name="sub-mail" id="sub-mail">
<input type="button" id="btn-sub" value="Subcribe">
</form>
</div>
</footer>
</body>
</html>