-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
71 lines (64 loc) · 2.16 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
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header>
<h1>My Portfolio</h1>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- Home Section -->
<section id="home">
<img src="" alt="Profile Photo" class="profile-pic">
<h1>Hello, I'm Pula Bhavya</h1>
<p>Aspiring Software Engineer | Cybersecurity & AI Enthusiast</p>
</section>
<!-- About Section -->
<section id="about" class="about">
<h2>About Me</h2>
<p>
I am a Computer Science student specializing in Cybersecurity.
Passionate about AI, software engineering, and building secure systems.
</p>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<h2>Projects</h2>
<div class="project-list">
<div class="project">
<h3>Malicious Webpage Detection</h3>
<p>Detecting malicious webpages in real-time using AI models for network security.</p>
</div>
<div class="project">
<h3>Ransomware Detection</h3>
<p>Built a detection system using processor and disk usage data to identify ransomware attacks.</p>
</div>
<div class="project">
<h3>FraudShieldX</h3>
<p>An AI-based fraud detection system for multi-party e-commerce transactions.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact</h2>
<p>?? Email: <a href="mailto:your.email@example.com">your.email@example.com</a></p>
<p>?? LinkedIn: <a href="https://linkedin.com/in/yourprofile" target="_blank">linkedin.com/in/yourprofile</a></p>
<p>?? GitHub: <a href="https://github.com/yourgithub" target="_blank">github.com/yourgithub</a></p>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Pula Bhavya | Built with ?? using HTML & CSS</p>
</footer>
</body>
</html>