-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (151 loc) · 4.35 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vamshi Krishna Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #1f1c2c, #928dab);
color: #fff;
margin: 0;
padding: 0;
overflow-x: hidden;
}
header {
background: linear-gradient(135deg, #232526, #414345);
padding: 50px 20px;
text-align: center;
position: relative;
}
header .header-content {
position: relative;
z-index: 2;
}
header h1 {
margin: 0;
font-size: 3em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
header p {
margin: 10px 0 0;
font-size: 1.5em;
text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
main {
padding: 20px;
position: relative;
z-index: 1;
}
section {
margin-bottom: 40px;
}
section h2 {
border-bottom: 2px solid #61dafb;
padding-bottom: 10px;
}
section ul {
list-style: none;
padding: 0;
}
section ul li {
background: rgba(0, 0, 0, 0.3);
margin: 5px 0;
padding: 10px;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
section ul li::before {
content: '';
width: 10px;
height: 10px;
background: #61dafb;
border-radius: 50%;
display: inline-block;
margin-right: 10px;
}
footer {
background: linear-gradient(135deg, #232526, #414345);
padding: 10px;
text-align: center;
}
footer p {
margin: 0;
font-size: 1em;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
opacity: 0.1;
z-index: 0;
}
</style>
</head>
<body>
<header>
<div class="header-content">
<h1>Vamshi Krishna</h1>
<p>Techie and AI Enthusiast</p>
</div>
</header>
<main>
<section id="why-me">
<h2>Why Me?</h2>
<p>I am a techie who is good at computers. I want to throw myself into any job role I can get, knowing the ins and outs of the field. I will find ways to integrate AI technology to streamline processes or explore new avenues. I aim to bring out new experiences to routine businesses.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p><strong>WhatsApp:</strong> +91 9515402480</p>
<p><strong>Location:</strong> Hyderabad</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Linux: 96%</li>
<li>Python: 89%</li>
<li>Assembly: 87%</li>
<li>JavaScript: 76%</li>
<li>Malware Analysis: 45%</li>
<li>Reverse Engineering: 79%</li>
<li>OSINT: 92%</li>
</ul>
</section>
<section id="experience">
<h2>Experience</h2>
<h3>Artificial Intelligence (AI)</h3>
<p>Self-made project: Built an AI app using NLP models (e.g., GPT-3) to read and imitate chats on various platforms with 60% accuracy.</p>
<h3>Vulnerability Detection</h3>
<p>Self-made project: Developed an AI model utilizing ML and cybersecurity models to detect vulnerabilities in specified applications.</p>
<h3>Security Researcher</h3>
<p>Self-bragging: As a CTF player, I've engaged in various platforms, tackled vulnmachines, and conducted extensive research on technologies and subjects.</p>
</section>
<section id="languages">
<h2>Languages</h2>
<ul>
<li>Telugu: 100%</li>
<li>English: 80%</li>
<li>Hindi: 50%</li>
</ul>
</section>
<section id="education">
<h2>Education</h2>
<p>2020-2024: Computer Science Engineering, Sreyas Institute of Engineering and Technology (dropped out)</p>
<p>2018-2020: Maths, Physics, Chemistry, Narayana Junior College</p>
</section>
</main>
<footer>
<p>Vamshi Krishna © 2024</p>
</footer>
<script src="script.js"></script>
</body>
</html>