-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.59 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body class="main-page">
<header>
<nav>
<a href="index.html">Home</a>
<a href="mouse_events.html">Mouse Events</a>
<a href="calculator.html">Calculator</a>
<a href="registration_form.html">Registration Form</a>
<a href="cybersecurity.html">Cybersecurity</a>
</nav>
</header>
<h1>Welcome to the Main Page</h1>
<div class="container">
<div class="main-content">
<h2>Welcome to Our event</h2>
<p class="event-description">
Industry experts will share their insights on the latest cybersecurity trends and threats, and offer advice to students on how to prepare for a career in cybersecurity.
Students will have the opportunity to participate in hands-on workshops on a variety of cybersecurity topics, such as ethical hacking, penetration testing, and network security.You will be able to compete in a variety of cybersecurity competitions, such as capture the flag (CTF) and bug bounties.It is a great opportunity for students to network with each other, as well as with industry professionals.
</p>
<p class="event-description">
Are you ready for the challenge? Click the button below to learn more and register for the event.
</p>
<a class="cta-button" href="registration_form.html">Register Now</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>