GAlbayrak commited on
Commit
8303ce7
·
verified ·
1 Parent(s): 09fdeed

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +30 -2
index.html CHANGED
@@ -5,12 +5,40 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Saldırı Simülatörü</title>
7
  <link rel="stylesheet" href="styles.css">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  </head>
9
  <body style="background-color: rgb(12, 185, 228);">
10
  <header>
11
  <h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
12
  </header>
13
- <main style="background-color: rgb(12, 185, 228);">
14
  <section id="attack-simulator">
15
  <h2>Simülasyon Senaryoları</h2>
16
  <button id="phishingAttack">Kimlik Avı Saldırısı</button>
@@ -22,4 +50,4 @@
22
  </main>
23
  <script src="scripts.js"></script>
24
  </body>
25
- </html>
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Saldırı Simülatörü</title>
7
  <link rel="stylesheet" href="styles.css">
8
+ <style>
9
+ #attack-simulator {
10
+ margin: 20px;
11
+ padding: 20px;
12
+ background-color: #fff;
13
+ border-radius: 8px;
14
+ box-shadow: 0 0 10px rgba(0,0,0,0.1);
15
+ }
16
+
17
+ button {
18
+ margin: 10px;
19
+ padding: 10px 20px;
20
+ background-color: #dd3333;
21
+ color: white;
22
+ border: none;
23
+ border-radius: 4px;
24
+ cursor: pointer;
25
+ }
26
+
27
+ button:hover {
28
+ background-color: #6b1515;
29
+ }
30
+
31
+ #attack-result {
32
+ margin-top: 20px;
33
+ }
34
+
35
+ </style>
36
  </head>
37
  <body style="background-color: rgb(12, 185, 228);">
38
  <header>
39
  <h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
40
  </header>
41
+ <main style="color: rgb(89, 0, 233);">
42
  <section id="attack-simulator">
43
  <h2>Simülasyon Senaryoları</h2>
44
  <button id="phishingAttack">Kimlik Avı Saldırısı</button>
 
50
  </main>
51
  <script src="scripts.js"></script>
52
  </body>
53
+ </html>