-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
157 lines (130 loc) · 3.74 KB
/
Copy pathdev.html
File metadata and controls
157 lines (130 loc) · 3.74 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer Credits - Movie Download Website</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #000000;
color: #f1c40f; /* Yellow text */
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 40px auto;
padding: 30px;
background: #222222;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
color: #ecf0f1;
}
h1, h2, h3 {
text-align: center;
color: #f39c12;
font-weight: bold;
}
h2 {
color: #f1c40f;
}
p, ul {
font-size: 1.2em;
line-height: 1.6em;
text-align: left;
}
ul {
padding-left: 20px;
}
ul li {
padding: 12px;
border-bottom: 1px solid #34495e;
}
ul li:last-child {
border-bottom: none;
}
.highlight {
color: #f39c12;
font-weight: bold;
}
.credits {
text-align: center;
margin-top: 30px;
font-size: 1.2em;
}
.credits a {
text-decoration: none;
color: #1abc9c;
font-weight: bold;
}
.credits a:hover {
color: #16a085;
}
.footer {
text-align: center;
margin-top: 40px;
font-size: 1em;
color: #bdc3c7;
}
.footer strong {
color: #ecf0f1;
}
.btn {
background-color: #f39c12;
color: #2c3e50;
padding: 12px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
display: inline-block;
margin-top: 20px;
}
.btn:hover {
background-color: #e67e22;
}
.divider {
width: 80%;
height: 2px;
background-color: #34495e;
margin: 20px auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Movie Download Website</h1>
<h2>Project Overview</h2>
<p>This project is a static movie download website developed as part of our Web Technology subject. It allows users to download Bollywood and Hollywood movies and web series in multiple qualities such as 480p, 720p, and 1080p.</p>
<div class="divider"></div>
<h2>Features</h2>
<ul>
<li>Browse and download Bollywood and Hollywood movies for free.</li>
<li>Download web series in multiple qualities (480p, 720p, 1080p).</li>
<li>Clean, visually engaging design with a dark theme using HTML and CSS.</li>
</ul>
<div class="divider"></div>
<h2>Developers</h2>
<ul>
<li><span class="highlight">Mangesh Choudhary</span></li>
<li><span class="highlight">Pranshu Patel</span></li>
<li><span class="highlight">Akshata Kamble</span></li>
</ul>
<div class="divider"></div>
<h2>Project Structure</h2>
<ul>
<li><span class="highlight">HTML Files:</span> Structure and layout of the website.</li>
<li><span class="highlight">CSS Files:</span> Styles and visual aesthetics of the website.</li>
<li><span class="highlight">Images Folder:</span> Contains visuals like movie posters and thumbnails.</li>
<li><span class="highlight">Links Folder:</span> Houses download resources and links.</li>
</ul>
<div class="credits">
<p>For more details or to access the source code, visit our <a href="https://github.com/GraphicsAndroid65/Movie-Website" target="_blank">GitHub Repository</a>.</p>
<a href="https://github.com/GraphicsAndroid65/Movie-Website" class="btn" target="_blank">Visit GitHub Repo</a>
</div>
</div>
<div class="footer">
<p>Made with ❤️ by <strong>Mangesh Choudhary</strong>, <strong>Pranshu Patel</strong>, and <strong>Akshata Kamble</strong>.</p>
</div>
</body>
</html>