-
Notifications
You must be signed in to change notification settings - Fork 0
/
Files.html
259 lines (239 loc) · 9.82 KB
/
Files.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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html>
<head>
<title>Files</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0;">
<link rel="stylesheet" href="Styles/General.css" />
<link rel="stylesheet" href="Styles/Left Section.css" />
<link rel="stylesheet" href="Styles/Top Section.css" />
<link rel="stylesheet" href="Styles/Files Main Section.css" />
</head>
<body>
<section class="left-section">
<p class="site-title">Amr</p>
<a class="page-type-container" href="index.html">
<img src="Images/Dashboard Icon.png" class="page-type-img" />
<span class="page-type-title">Dashboard</span>
</a>
<a class="page-type-container" href="Settings.html">
<img src="Images/Settings Icon.png" class="page-type-img" />
<span class="page-type-title">Settings</span>
</a>
<a class="page-type-container" href="Profile.html">
<img src="Images/Profile Icon.png" class="page-type-img" />
<span class="page-type-title">Profile</span>
</a>
<a class="page-type-container" href="Projects.html">
<img src="Images/Project-Icon-1.png" class="page-type-img" />
<span class="page-type-title">Projects</span>
</a>
<a class="page-type-container" href="Courses.html">
<img src="Images/graduation cap.png" class="page-type-img" />
<span class="page-type-title">Courses</span>
</a>
<a class="page-type-container" href="Friends.html">
<img src="Images/Friends.png" class="page-type-img" />
<span class="page-type-title">Friends</span>
</a>
<a
class="page-type-container"
href="Files.html"
style="background-color: rgb(230, 230, 230)"
>
<img src="Images/File.webp" class="page-type-img" />
<span class="page-type-title">Files</span>
</a>
<a class="page-type-container" href="Plans.html">
<img src="Images/credit_card.png" class="page-type-img">
<span class="page-type-title">Plans</span>
</a>
</section>
<section class="main-section">
<header class="main-header">
<div class="search-div">
<input type="text" placeholder="Type a Keyword" />
<img src="Images/search icon.png" class="search-img" />
</div>
<img src="Images/Notification Icon.png" class="notification-img" />
<img src="Images/me.jpg" class="user-img" />
</header>
<section class="main-contents">
<p class="page-title">Files</p>
<div class="title-bar">
<div></div>
</div>
<section class="file-statistics">
<p class="big-bold-text">Files Statistics</p>
<div class="file-type-statistics">
<img src="Images/pdf.png" />
<div>
<p class="small-text">PDF Files</p>
<p class="small-grey-text">36</p>
</div>
<p class="small-grey-text file-type-statistics-size">3.5GB</p>
</div>
<div class="file-type-statistics">
<img src="Images/zip.png" />
<div>
<p class="small-text">ZIP Files</p>
<p class="small-grey-text">130</p>
</div>
<p class="small-grey-text file-type-statistics-size">26.5GB</p>
</div>
<div class="file-type-statistics">
<img src="Images/jpg.png" />
<div>
<p class="small-text">Image Files</p>
<p class="small-grey-text">240</p>
</div>
<p class="small-grey-text file-type-statistics-size">6.5GB</p>
</div>
<div class="file-type-statistics">
<img src="Images/avi.png" />
<div>
<p class="small-text">Video Files</p>
<p class="small-grey-text">24</p>
</div>
<p class="small-grey-text file-type-statistics-size">16.5GB</p>
</div>
<div class="file-type-statistics">
<img src="Images/mp3.png" />
<div>
<p class="small-text">Audio Files</p>
<p class="small-grey-text">20</p>
</div>
<p class="small-grey-text file-type-statistics-size">1.2GB</p>
</div>
<div class="upload-button-container">
<button class="upload-button">
<img src="Images/Upward Arrow.png" />Upload
</button>
</div>
</section>
<section class="files-grid">
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/pdf.png" class="file-type-img"/>
<p>Making Spaghetti.pdf</p>
</div>
<p class="small-grey-text">Chief amr</p>
<div class="file-details">
<p class="small-grey-text">8/7/2024</p>
<p class="small-grey-text">6.4MB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/mp3.png" class="file-type-img"/>
<p>Al-Hosary - Surah Al Nagm.mp3</p>
</div>
<p class="small-grey-text">Admin</p>
<div class="file-details">
<p class="small-grey-text">2/4/2024</p>
<p class="small-grey-text">3.1MB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/zip.png" class="file-type-img"/>
<p>Frontend Material.zip</p>
</div>
<p class="small-grey-text">Frontend Instructor</p>
<div class="file-details">
<p class="small-grey-text">1/9/2023</p>
<p class="small-grey-text">16.7GB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/AVI.png" class="file-type-img"/>
<p>HTML & CSS Full Course.avi</p>
</div>
<p class="small-grey-text">SuperSimpleDev</p>
<div class="file-details">
<p class="small-grey-text">12/5/2023</p>
<p class="small-grey-text">5.4GB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/jpg.png" class="file-type-img"/>
<p>Frontend Roadmap.jpg</p>
</div>
<p class="small-grey-text">roadmap.sh</p>
<div class="file-details">
<p class="small-grey-text">25/6/2022</p>
<p class="small-grey-text">2.2MB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/pdf.png" class="file-type-img"/>
<p>Making Spaghetti.pdf</p>
</div>
<p class="small-grey-text">Chief amr</p>
<div class="file-details">
<p class="small-grey-text">8/7/2024</p>
<p class="small-grey-text">6.4MB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/mp3.png" class="file-type-img"/>
<p>Al-Hosary - Surah Al Nagm.mp3</p>
</div>
<p class="small-grey-text">Admin</p>
<div class="file-details">
<p class="small-grey-text">2/4/2024</p>
<p class="small-grey-text">3.1MB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/zip.png" class="file-type-img"/>
<p>Frontend Material.zip</p>
</div>
<p class="small-grey-text">Frontend Instructor</p>
<div class="file-details">
<p class="small-grey-text">1/9/2023</p>
<p class="small-grey-text">16.7GB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/AVI.png" class="file-type-img"/>
<p>HTML & CSS Full Course.avi</p>
</div>
<p class="small-grey-text">SuperSimpleDev</p>
<div class="file-details">
<p class="small-grey-text">12/5/2023</p>
<p class="small-grey-text">5.4GB</p>
</div>
</div>
<div class="file-container">
<img src="Images/Download.png" class="download-icon" />
<div class="file-overview">
<img src="Images/jpg.png" class="file-type-img"/>
<p>Frontend Roadmap.jpg</p>
</div>
<p class="small-grey-text">roadmap.sh</p>
<div class="file-details">
<p class="small-grey-text">25/6/2022</p>
<p class="small-grey-text">2.2MB</p>
</div>
</div>
</section>
</section>
</section>
</body>
</html>