Translsis commited on
Commit
f7d7c6b
·
verified ·
1 Parent(s): 35b0dde

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +17 -1
index.html CHANGED
@@ -12,7 +12,18 @@
12
  height: 100vh;
13
  width: 100vw;
14
  font-family: 'Arial Rounded MT Bold', sans-serif;
15
- background: linear-gradient(to bottom right, #000000, #222222);
 
 
 
 
 
 
 
 
 
 
 
16
  }
17
 
18
  /* Khung chữ */
@@ -112,6 +123,11 @@
112
  </head>
113
  <body>
114
 
 
 
 
 
 
115
  <!-- Khung hoa văn -->
116
  <div class="border-frame"></div>
117
 
 
12
  height: 100vh;
13
  width: 100vw;
14
  font-family: 'Arial Rounded MT Bold', sans-serif;
15
+ position: relative;
16
+ }
17
+
18
+ /* Video nền cho body */
19
+ #body-video-bg {
20
+ position: fixed;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 100%;
25
+ object-fit: cover;
26
+ z-index: -2;
27
  }
28
 
29
  /* Khung chữ */
 
123
  </head>
124
  <body>
125
 
126
+ <!-- Video nền toàn màn hình -->
127
+ <video id="body-video-bg" autoplay loop muted playsinline>
128
+ <source src="Background.mp4" type="video/mp4">
129
+ </video>
130
+
131
  <!-- Khung hoa văn -->
132
  <div class="border-frame"></div>
133