<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>HATYZ FREE</title>
<style>
body {
background-color: #000;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.panel {
width: 320px;
background-color: #111;
border: 2px solid #ccc;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 20px white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.panel h2 {
text-align: center;
font-size: 18px;
margin-bottom: 15px;
color: white;
}
.section-title {
background-color: #222;
color: white;
padding: 8px;
border-radius: 4px;
margin-bottom: 10px;
text-align: left;
font-weight: bold;
}
.checkbox-group label {
display: flex;
align-items: center;
margin-bottom: 6px;
}
.checkbox-group input {
margin-right: 6px;
}
select {
width: 100%;
padding: 6px;
margin-bottom: 10px;
background-color: #000;
color: white;
border: 1px solid #ccc;
border-radius: 4px;
}
.slider-container {
display: flex;
align-items: center;
margin-top: 10px;
}
input[type=range] {
width: 100%;
}
.slider-value {
margin-left: 10px;
font-size: 12px;
}
[Link]-label {
font-size: 14px;
}
</style>
</head>
<body>
<div class="panel">
<h2>HATYZ FREE</h2>
<div class="section-title">AIM</div>
<div class="checkbox-group">
<label><input type="checkbox"> Enable Aimbot</label>
<label><input type="checkbox"> Show FOV</label>
<label><input type="checkbox"> Ignore Prone</label>
<label><input type="checkbox"> Ignore Walls</label>
</div>
<select>
<option>Automatic</option>
<option>Manual</option>
</select>
<select>
<option>Head</option>
<option>Chest</option>
</select>
<div class="slider-container">
<input type="range" min="0" max="100" value="0" />
<span class="slider-value">[0.0]</span>
</div>
<label class="small-label"><input type="checkbox"> Adjust FOV</label>
</div>
</body>
</html>