Spaces:
Running
Running
File size: 1,064 Bytes
b05b4ac 1d818b8 0afeddc b05b4ac 1d818b8 e0449c8 1d818b8 899d1e1 b05b4ac | 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 | <!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Ark Re Code Scraper</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
</head>
<body>
<!-- Background Video -->
<video id="bgVideo" autoplay loop muted>
<source src="https://video.twimg.com/ext_tw_video/1892164405464629249/pu/vid/avc1/1280x720/cgW9XdNOX1DPI6Rq.mp4" type="video/mp4">
</video>
<div class="container">
<h1>Ark Re Code Scraper</h1>
<label for="charName">Cari Karakter:</label>
<input type="text" id="charName" placeholder="Masukkan nama karakter...">
<button onclick="fetchData()">Cari</button>
<br>
<button class="chara" onclick="playVideo(this)">Edalia</button>
<button class="chara" onclick="playVideo(this)">Ermes</button>
<div id="result"></div>
</div>
<!-- Tempat Video Ditampilkan -->
<div id="videoWrapper"></div>
<script src="script.js"></script>
</body>
</html>
|