-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
129 lines (107 loc) · 4 KB
/
index3.html
File metadata and controls
129 lines (107 loc) · 4 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<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">
<title>Idisi Kenneth</title>
<link rel="stylesheet" href="style3.css">
<link rel="shortcut icon" href="logo.png">
</head>
<body>
<header>
<div class="logo">
<h3>MOVIE TV</h3>
</div>
<div class="search">
<span class="search-span">
<img src="search white.png" alt="" width="20">
<input type="text" placeholder="search movies">
<span class="go-span">
<h1>GO</h1>
</span>
</span>
</div>
<nav class="nav">
<a href="#">HOME</a>
<a href="#gallery">GALLERY</a>
<a href="#trending">TRENDING MOVIES</a>
<a href="#">LOGIN</a>
<a href="#account">CREATE ACCOUNT</a>
<a href="#contact">CONTACT US</a>
</nav>
</header>
<main>
<section id="trending">
<h1>TRENDING MOVIES</h1>
<div class="row1-img">
<img src="trending img1.jpg" alt="" width="150">
<img src="trending img2.jpg" alt="" width="150">
<img src="trending img3.jpg" alt="" width="150">
</div>
<div class="row2-img">
<img src="woman smiling.jpg" alt="" width="300" class="big-img">
<span class="small-img">
<img src="trending img5.jpg" alt="" width="150">
<img src="trending img6.jpg" alt="" width="150">
</span>
</div>
</section>
<section id="account">
<h1>CREATE ACCOUNT</h1>
<form>
<div class="input-group">
<input type="text" placeholder="Firstname">
<input type="text" placeholder="Lastname">
</div>
<div class="input-group">
<input type="email" placeholder="Email">
<input type="number" placeholder="Phone">
</div>
<div class="address">
<input type="text" placeholder="Address">
</div>
<div class="btn">
<input type="submit" value="CREATE">
</div>
</form>
</section>
<section id="gallery">
<h1>MOVIE GALLERY</h1>
<div class="gallery-img">
<img src="gallery img1.jpg" alt="" width="200">
<img src="gallery img2.jpg" alt="" width="200">
<img src="gallery img3.jpg" alt="" width="200">
</div>
<div class="gallery-img">
<img src="gallery img4.jpg" alt="" width="200">
<img src="gallery img5.jpg" alt="" width="200">
<img src="gallery img6.jpg" alt="" width="200">
</div>
</section>
<section id="contact">
<h1><img src="location icon.png" alt="" width="30"> CONTACT US</h1>
<form>
<h3>Address</h3>
<p>
Block 15b, <br>
Babajide Cresent, <br>
Shita Bus-stop, <br>
Surulere, Lagos.
</p>
</form>
<div class="icons">
<img src="facebook1.png" alt="" width="25">
<img src="instagram1.png" alt="" width="25">
<img src="linkedin1.png" alt="" width="25">
<img src="twitter1.png" alt="" width="25">
</div>
</section>
</main>
<footer>
<p>
© Copyright 2023. All rights reserved. Designed by Kenny.
</p>
</footer>
</body>
</html>