ConstantCoder's picture
Update index.html
8274844 verified
raw
history blame
1.44 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saldırı Simülatörü</title>
<link rel="stylesheet" href="styles.css">
<style>
#attack-simulator {
margin: 20px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
button {
margin: 10px;
padding: 10px 20px;
background-color: #dd3333;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #6b1515;
}
#attack-result {
margin-top: 20px;
}
</style>
</head>
<body style="background-color: rgb(12, 185, 228);">
<header>
<h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
</header>
<main style="color: rgb(89, 0, 233);">
<section id="attack-simulator">
<h2>Simülasyon Senaryoları</h2>
<button id="phishingAttack">Kimlik Avı Saldırısı</button>
<button id="ransomwareAttack">Fidye Yazılımı Saldırısı</button>
<button id="ddosAttack">DDoS Saldırısı</button>
<button id="malwareAttack">Kötü Amaçlı Yazılım Saldırısı</button>
<div id="attack-result"></div>
</section>
</main>
<script src="scripts.js"></script>
</body>
</html>