hongshi-files commited on
Commit
ed0d0f6
·
verified ·
1 Parent(s): eb3fcfa

Rename gdyg/ep01.html to gdyg/EP01.html

Browse files
Files changed (2) hide show
  1. gdyg/EP01.html +56 -0
  2. gdyg/ep01.html +0 -77
gdyg/EP01.html ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>网盘</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ height: 100vh;
15
+ margin: 0;
16
+ }
17
+ .container {
18
+ background: white;
19
+ border-radius: 15px;
20
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
21
+ padding: 20px;
22
+ width: 80%;
23
+ max-width: 600px;
24
+ text-align: center;
25
+ }
26
+ .folder {
27
+ display: inline-block;
28
+ margin: 10px;
29
+ text-align: center;
30
+ }
31
+ .folder a {
32
+ text-decoration: none;
33
+ color: #333;
34
+ }
35
+ .folder-icon {
36
+ font-size: 50px;
37
+ border-radius: 15px;
38
+ background: linear-gradient(135deg, #ff9a9e, #fad0c4);
39
+ padding: 20px;
40
+ display: inline-block;
41
+ }
42
+ .folder-name {
43
+ margin-top: 10px;
44
+ font-size: 18px;
45
+ }
46
+ </style>
47
+ </head>
48
+ <body>
49
+ <div class="container">
50
+ <h1>我的网盘</h1>
51
+ <video width="1280" height="720" controls="" __idm_id__="778241">
52
+ <source src="EP01.mp4">
53
+ </video>
54
+ </div>
55
+ </body>
56
+ </html>
gdyg/ep01.html DELETED
@@ -1,77 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-CN">
3
- <head>
4
- <meta charset="UTF-8">
5
- <title>网盘页面</title>
6
- <style>
7
- body {
8
- font-family: Arial, sans-serif;
9
- margin: 0;
10
- padding: 0;
11
- background-color: #f4f4f4;
12
- }
13
- header {
14
- background-color: #4CAF50;
15
- color: white;
16
- padding: 10px 0;
17
- text-align: center;
18
- }
19
- nav {
20
- width: 200px;
21
- background: #333;
22
- height: 100vh;
23
- position: fixed;
24
- top: 0;
25
- left: 0;
26
- padding-top: 20px;
27
- }
28
- nav a {
29
- color: white;
30
- text-decoration: none;
31
- display: block;
32
- padding: 10px;
33
- text-align: center;
34
- }
35
- nav a:hover {
36
- background: #575757;
37
- }
38
- main {
39
- margin-left: 220px;
40
- padding: 20px;
41
- }
42
- table {
43
- width: 100%;
44
- border-collapse: collapse;
45
- }
46
- table, th, td {
47
- border: 1px solid #ddd;
48
- }
49
- th, td {
50
- padding: 8px;
51
- text-align: left;
52
- }
53
- th {
54
- background-color: #4CAF50;
55
- color: white;
56
- }
57
- tr:nth-child(even) {
58
- background-color: #f2f2f2;
59
- }
60
- </style>
61
- </head>
62
- <body>
63
- <header>
64
- <h1>网盘</h1>
65
- </header>
66
- <nav>
67
- <a href="#">主页</a>
68
- </nav>
69
- <main>
70
- <table>
71
- <video width="640" height="360" controls>
72
- <source src="ep01.mp4">
73
- </video>
74
- </table>
75
- </main>
76
- </body>
77
- </html>