-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
85 lines (73 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | Sai</title>
<link rel="icon" type="png|image" href="/IMAGES/sailogo.png">
<link rel="stylesheet" href="/CSS/style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
</head>
<body>
<canvas id="matrixCanvas"></canvas>
<!-- Matrix -->
<script src="/JAVASCRIPT/matrix.js"></script>
<header class="header">
<a href="#" class="logo">{Portfolio} </a>
<nav class="navbar">
<a href="#home" style="--i:1;" class="active">Home</a>
<a href="#about" style="--i:2;">About</a>
<a href="#skill" style="--i:3;">Skills</a>
<a href="#project" style="--i:4;">Projects</a>
<a href="#contact" style="--i:5;">Contact</a>
</nav>
</header>
<section id="home" class="home">
<div class="home-content" data-scroll data-scroll-speed="-5" >
<h3 class="mu">Hello, It's me</h3>
<h1>Terukula Sai</h1>
<h3>And I'm a <span class="pro-text">
<script>
var typed = new Typed(".pro-text", {
strings: [
"Ethical Hacker",
"Frontend Developer",
"Programmer",
"Linux Administrator",
"Photo Editor",
"Blockchain Developer"
],
typeSpeed: 100,
backSpeed: 100,
backDelay: 1000,
loop: true
});
</script>
</span></h3>
<p>    This portfolio highlights my passion for cybersecurity and my commitment to ethical practices. <br> <br>
   I have acquired fundamental knowledge and skills in various areas of ethical hacking,
allowing me to contribute to the security of organizations and individuals. <br> <br>
   Hacked multiple Wifi network that were based on WPS protocol.
</p>
<div class="home-sci">
<a href="https://github.com/SAI127001" target="_blank"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/terukula-sai/" target="_blank"><i class='bx bxl-linkedin' ></i></a>
<a href="https://wa.me/9987886552" target="_blank"><i class='bx bxl-whatsapp'></i></a>
<a href="https://www.instagram.com/sai_127.0.0.1/" target="_blank"><i class='bx bxl-instagram'></i></a>
</div>
<a href="" class="btn-box" download="Sai CV/Resume">Download CV</a>
</div>
<div class="home-img">
<div class="glowing-circle">
<span></span>
<span></span>
<div class="image">
<img src="/IMAGES/saianon.png" alt="">
</div>
</div>
</div>
</section>
</body>
</html>