Newer
Older
2024-Tsubasa / hash.html
@tsubasa tsubasa on 23 Jul 2024 380 bytes add: code
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>hash</title>
</head>
<body>
    <script>
        console.log("hello");
        let hash = {group1: {video: {mp3: "path", mp4: "path"}, resume: {1: "path", 2: "path"}}}
        console.log(hash)
    </script>    
</body>
</html>