-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblack.html
More file actions
47 lines (43 loc) · 2.15 KB
/
Copy pathblack.html
File metadata and controls
47 lines (43 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Black Screen | Tools and Utilities from REFLEX.TOOLS">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<meta name="author" content="qwk">
<meta property="og:title" content="reflex.tools">
<meta property="og:description" content="Black Screen | Tools and Utilities from REFLEX.TOOLS">
<meta property="og:type" content="website">
<meta property="og:site_name" content="reflex.tools">
<meta property="og:locale" content="en_GB">
<meta property="og:image" content="https://og.tailgraph.com/og?fontFamily=Montserrat&title=Black Screen&titleTailwind=font-bold%20text-6xl%20text-white&text=Tools and Utilities from REFLEX.TOOLS&textTailwind=text-2xl%20mt-4%20bg-blueGray-300%20text-gray-300&logoUrl=&logoTailwind=h-8&bgTailwind=bg-black&footer=reflex.tools&footerTailwind=text-blue-400%20text-3xl&t=1744575448853&refresh=1">
<meta property="og:image:alt" content="reflex.tools">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="reflex.tools">
<meta name="twitter:site" content="@qwkdev">
<meta name="twitter:description" content="Black Screen | Tools and Utilities from REFLEX.TOOLS">
<meta name="twitter:image" content="https://og.tailgraph.com/og?fontFamily=Montserrat&title=Black Screen&titleTailwind=font-bold%20text-6xl%20text-white&text=Tools and Utilities from REFLEX.TOOLS&textTailwind=text-2xl%20mt-4%20bg-blueGray-300%20text-gray-300&logoUrl=&logoTailwind=h-8&bgTailwind=bg-black&footer=reflex.tools&footerTailwind=text-blue-400%20text-3xl&t=1744575448853&refresh=1">
<meta name="twitter:image:alt" content="reflex.tools">
<title>Black Screen | reflex.tools</title>
<style>
body {
margin: 0;
background: #000;
}
</style>
</head>
<body>
<script>
document.addEventListener('dblclick', () => {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
document.exitFullscreen();
}
});
</script>
</body>
</html>