-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrama.html
115 lines (111 loc) · 5.87 KB
/
drama.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
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>action</title>
<link rel="stylesheet" href="index.css">
<script defer src="https://kit.fontawesome.com/9f767eca8f.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
</header>
<div class="container">
<div class="container__header">
<img class="logo" src="images/showbitz.jpeg">
<div class="container__title">
<h1 class="heading">SHOW BITZ</h1>
<h4>Theatre Management System</name></h4>
</div>
</div>
<div class="container__movie-system">
<nav>
<li data-nav-list >All movies
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\all movies.html'>
<button class="Action">
<i class="fas fa-video"></i>
</button>
</a>
</li>
<li data-nav-list>Action
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\action.html'>
<button>
<i class="fas fa-video"></i>
</button>
</a>
</li>
<li data-nav-list>Comedy
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\comedy.html'>
<button>
<i class="fas fa-video"></i>
</button>
</a>
</li>
<li data-nav-list class="active">Drama
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\drama.html'>
<button>
<i class="fas fa-video"></i>
</button>
</a>
</li>
<li data-nav-list>Horror
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\horror.html'>
<button class="horror">
<i class="fas fa-video"></i>
</button>
</a>
</li>
<li data-nav-list>Romance
<a href='C:\Users\HP\Desktop\Theatre-Management-System-main\romance.html'>
<button class="romance">
<i class="fas fa-video"></i>
</button>
</a>
</li>
</nav>
<img class="img-movie" src="https://upload.wikimedia.org/wikipedia/en/8/80/Kalank_Poster.jpg">
<img class="img-movie" src="https://upload.wikimedia.org/wikipedia/en/8/85/Sanju_poster.jpg">
<img class="img-movie" src="https://upload.wikimedia.org/wikipedia/en/thumb/2/29/Super_30_The_Film.jpg/220px-Super_30_The_Film.jpg">
<div class="movie-system__movie-list">
</div>
<div class="movie__modal-box">
<div class="movie__modal-content">
<div class="movie__modal-header">
Enter movie credentials
<div class="close">×</div>
</div>
<div class="movie__add-movie">
<div class="add-movie__genre-image"></div>
<div class="add-movie__input-form">
<label for="movie-name">Enter name</label><br>
<input name="name" type="text" id="movie-name" placeholder="Name of movie" required><br>
<label for="movie-genre">Choose genre</label><br>
<select name="genre" id="movie-genre">
<option value="None">--Select a genre--</option>
<option value="Action">Action</option>
<option value="Comedy">Comedy</option>
<option value="Drama">Drama</option>
<option value="Horror">Horror</option>
<option value="Romance">Romance</option>
</select><br>
<label for="movie-rating">Enter rating</label><br>
<select name="rating" id="movie-rating">
<option value="None">--Choose rating--</option>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select><br>
<label for="movie-description">Enter description</label><br>
<textarea name="description" id="movie-description" placeholder="Description or summary of the movie"></textarea><br>
<input type="submit" id="add-movie" value="Add movie">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>