0% found this document useful (0 votes)
2 views4 pages

!doctype HTML

This document is an HTML template for a user interface titled 'XITET FW PHZIN'. It features a panel with options for various functionalities like 'Aim Assist', 'Auto Headshot', 'No Recoil', and 'Wall View', each with a toggle switch to activate or deactivate them. The design includes a footer and a button to apply the selected options, styled with CSS for a modern look.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views4 pages

!doctype HTML

This document is an HTML template for a user interface titled 'XITET FW PHZIN'. It features a panel with options for various functionalities like 'Aim Assist', 'Auto Headshot', 'No Recoil', and 'Wall View', each with a toggle switch to activate or deactivate them. The design includes a footer and a button to apply the selected options, styled with CSS for a modern look.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-
scale=1.0">
<title>XITET FW PHZIN</title>

<style>
body {
margin: 0;
background: #0a0a0a;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}

.panel {
width: 90vw;
max-width: 900px;
aspect-ratio: 4/3;
background: #111;
border-radius: 15px;
padding: 20px;
box-shadow: 0 0 25px
rgba(0,255,150,0.3);
display: flex;
flex-direction: column;
}

.header {
text-align: center;
color: #00ffae;
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}

.menu {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}

.card {
background: #1a1a1a;
border-radius: 10px;
padding: 10px;
}

.card h3 {
color: #00ffae;
margin: 0;
font-size: 14px;
}

.toggle {
margin-top: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}

.switch {
width: 40px;
height: 20px;
background: #333;
border-radius: 20px;
position: relative;
cursor: pointer;
}

.switch::after {
content: "";
width: 16px;
height: 16px;
background: #00ffae;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
transition: 0.3s;
}
.[Link]::after {
left: 22px;
}

.footer {
text-align: center;
font-size: 12px;
color: #666;
margin-top: 10px;
}

button {
margin-top: 10px;
padding: 8px;
border: none;
border-radius: 8px;
background: #00ffae;
font-weight: bold;
cursor: pointer;
}
</style>
</head>

<body>

<div class="panel">

<div class="header">XITET FW PHZIN</


div>

<div class="menu">

<div class="card">
<h3>Aim Assist</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>

<div class="card">
<h3>Auto Headshot</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>

<div class="card">
<h3>No Recoil</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>

<div class="card">
<h3>Wall View</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>

</div>

<button
onclick="alert('Aplicado!')">Aplicar</
button>

<div class="footer">© 2026 XITET FW


PHZIN</div>

</div>

<script>
function toggle(el){
[Link]("active");
}
</script>

</body>
</html>

You might also like