-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (84 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
93 lines (84 loc) · 3.59 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Nitish Kovuru's Portfolio">
<title>Nitish Kovuru - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<!-- FontAwesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="intro">
<h1>Hi, I'm Nitish Kovuru</h1>
<p>Computer Engineering Student | Software Developer | Machine Learning Enthusiast</p>
<a href="#projects" class="btn">View My Projects</a>
<div class="social-links">
<a href="https://github.com/Nbk7822" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/nitish-kovuru-2423351b4/" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</section>
<div class="divider"></div>
<!-- Projects Section -->
<section id="projects" class="section">
<h2>Projects</h2>
<div class="project-list">
<div class="project">
<h3>Crypto-jacking Background Web-Agent Detector</h3>
<p>Python-based detector that identified 500+ websites with unauthorized crypto-mining scripts. Achieved 97% accuracy in detecting malicious scripts.</p>
</div>
<div class="project">
<h3>Sentiment Analysis for Financial Investment</h3>
<p>Developed sentiment analysis scripts that processed over 1,000 financial articles. Improved investment decision-making for users with an 80% classification accuracy.</p>
</div>
<div class="project">
<h3>Image Denoising with CNN</h3>
<p>Created a convolutional neural network autoencoder to denoise images with Gaussian noise. Achieved a significant test loss reduction on the MNIST dataset.</p>
</div>
</div>
</section>
<div class="divider"></div>
<!-- Skills Section with background image -->
<section id="skills" class="section skills-section">
<h2>Skills</h2>
<ul>
<li><strong>Languages:</strong> Python, C, C++, Assembly (x86 and Intel), HTML, Matlab, SQL</li>
<li><strong>Frameworks:</strong> PyTorch, TensorFlow, OpenCV, Huggingface, Pandas, Numpy, Matplotlib</li>
<li><strong>Technologies:</strong> Git, Microsoft Azure, PyCharm, Linux, Stm32, Wordpress, Malware Analysis Tools</li>
<li><strong>Soft Skills:</strong> CI/CD, Security, Risk Analysis, Punctuality, Time Management, Problem Solving</li>
</ul>
</section>
<div class="divider"></div>
<!-- Contact Section -->
<section id="contact" class="section">
<h2>Contact Me</h2>
<p>Email: <a href="mailto:nkovuru@purdue.edu">nkovuru@purdue.edu</a></p>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2024 Nitish Kovuru</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>