-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup4.html
More file actions
68 lines (67 loc) · 1.64 KB
/
group4.html
File metadata and controls
68 lines (67 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Group 4: Software and Platform Security</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet" />
<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #fff;
color: #333;
}
header {
background-color: #800000;
color: white;
padding: 1.5rem;
text-align: center;
}
h1 {
margin: 0;
font-size: 2rem;
}
.container {
padding: 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.ka-card {
background: #f9f0f0;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
text-align: center;
cursor: pointer;
transition: transform 0.2s ease;
}
.ka-card:hover {
transform: scale(1.05);
background: #ffe5e5;
}
.ka-card h2 {
margin: 0;
font-size: 1.3rem;
color: #800000;
}
</style>
</head>
<body>
<header>
<h1>Group 4: Software and Platform Security</h1>
</header>
<div class="container">
<div class="ka-card" onclick="location.href='ka-malware.html'">
<h2>Software Security</h2>
</div>
<div class="ka-card" onclick="location.href='ka-adversarial.html'">
<h2>Web & Mobile Security</h2>
</div>
<div class="ka-card" onclick="location.href='ka-security.html'">
<h2>Secure Software Lifecycle</h2>
</div>
</div>
</body>
</html>