mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-29 20:08:43 +00:00
20 lines
371 B
HTML
20 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>API request</title>
|
|
<script src='js.js' defer></script>
|
|
<link rel='stylesheet' href='css.css'>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Anime</h1>
|
|
<input type="text" placeholder="Name" id="searchName"><button onclick="search()">Search</button>
|
|
|
|
<div id="results">
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|