-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyberburgs - Your Cybersecurity Partner</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Cyberburgs</h1>
<nav>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h2>Protecting Your Digital World</h2>
<p>Expert cybersecurity solutions tailored for you.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<div class="service">Penetration Testing</div>
<div class="service">Incident Response</div>
<div class="service">Security Audit</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Trusted cybersecurity experts with a commitment to excellence.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2024 Cyberburgs. All rights reserved.</p>
</footer>
</body>
</html>