-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 921 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<meta name="description" content="Minecraft Skin Grabber">
<meta name="author" content="Lukiiy">
<title>Minecraft Skin Grabber</title>
<script defer src="app.js"></script>
</head>
<body class="flex">
<h1>Skin Grabber</h1>
<div>
<label for="username">Player:</label>
<input type="text" id="username" name="player" placeholder="jeb_">
<button id="btn" onclick="execute(usernameInput.value.trim())">Get Skin</button>
</div>
<section id="data" class="flex">
<img id="skin" alt="Skin" onclick="dl('skin')"></img>
<img id="cape" alt="Cape" onclick="dl('cape')"></img>
</section>
<a href="https://github.com/Lukiiy/mcskingrabber">Source Code</a>
</body>
</html>