[go: up one dir, main page]

0% found this document useful (0 votes)
12 views3 pages

HTML Code of Modding Site

It's an html code of Modding Site where you can make a new site of Modding using this code

Uploaded by

bisowo1501
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views3 pages

HTML Code of Modding Site

It's an html code of Modding Site where you can make a new site of Modding using this code

Uploaded by

bisowo1501
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Action Mods</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.5.0/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
background: #000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #fff;
}
.navbar {
display: none;
background-color: #111;
padding: 10px;
color: #fff;
}
.navbar button {
background: none;
border: none;
color: #fff;
font-size: 24px;
}
.sidebar {
position: fixed;
top: 0;
left: 0;
width: 220px;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
padding-top: 20px;
transition: transform 0.3s ease;
z-index: 1000;
}
.sidebar a {
display: block;
padding: 12px 20px;
color: #fff;
text-decoration: none;
font-size: 16px;
}
.sidebar a:hover {
background-color: #007bff;
}
.sidebar i {
margin-right: 10px;
}
.main-content {
margin-left: 220px;
padding: 40px;
}
.card {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 12px;
margin-bottom: 20px;
}
.card h3 {
margin-bottom: 10px;
font-size: 22px;
}
canvas {
background: rgba(255,255,255,0.05);
border-radius: 10px;
padding: 10px;
}
footer {
text-align: center;
margin-top: 40px;
font-size: 16px;
}
footer a {
color: #00aced;
text-decoration: underline;
}
@media (max-width: 768px) {
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.sidebar {
transform: translateX(-100%);
}
.sidebar.show {
transform: translateX(0);
}
.main-content {
margin-left: 0;
padding: 20px;
}
}
</style>
</head>
<body>

<div class="navbar">
<button onclick="toggleSidebar()"><i class="fas fa-bars"></i></button>
<span>GIVEAWAY</span>
</div>

<div class="sidebar" id="sidebar">


<a href="index.php"><i class="fas fa-home"></i> Home</a>
<a href="/Free"><i class="fas fa-tasks"></i> Free Mods</a>
<a href="/Paid"><i class="fas fa-trophy"></i> Paid Mods</a>
<a href="/Gift"><i class="fas fa-gift"></i> Giveaway</a>
<a href="/Info"><i class="fas fa-user-friends"></i> About Me</a>
</div>

<div class="main-content">
<h1>😍Action Mods Giveaway😍</h1>
<div class="card">
<h3>No Giveaway Available currently</h3>
<p></p>
</div>

<footer>
📩 For any help, message us on Telegram:
<a href="https://t.me/+M3h9Az7vNO82ZTQ9" target="_blank">TELEGRAM GROUP</a>
</footer>
</div>

<script>
function toggleSidebar() {
document.getElementById('sidebar').classList.toggle('show');
}

const ctx = document.getElementById('statsChart').getContext('2d');


new Chart(ctx, {
type: 'pie',
data: {
labels: ['Mined Points', 'Referral Earnings'],
datasets: [{
label: 'EITSRA Distribution',
data: [<?= $user['mined_points'] ?>, <?= $referral_earnings ?>],
backgroundColor: ['#007bff', '#28a745'],
borderColor: ['#fff', '#fff'],
borderWidth: 1
}]
},
options: {
responsive: true,
plugins: {
legend: { position: 'top' },
tooltip: {
callbacks: {
label: function(item) {
return item.label + ': ' + item.raw + ' EITSRA';
}
}
}
}
}
});
</script>

</body>
</html>

You might also like