-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Krithick</title>
<meta name="description" content="Krithick's Portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<script src="https://kit.fontawesome.com/64d58efce2.js"></script>
<script>
var i = 0;
var txt = 'HELLO WORLD !'; /* The text */
var speed = 70; /* The speed/duration of the effect in milliseconds */
function typeWriter() {
if (i < txt.length) {
document.getElementById("title").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}</script>
</head>
<body onload="typeWriter()">
<section class="banner" id="sec">
<header>
<a href="#" class="logo">Krithick</a>
<div id="toggle" onclick="toggle()"></div>
</header>
<div class="content">
<h2 id="title"></h2>
<br><h2>I am <span>Krithick</span></h2>
<p>Hi Guys, I am a Cyber-Security Enthusiast,Web-Penetration Tester,Developer.</p>
<a href="./about.html">Know More</a>
</div>
<ul class="sci">
<li><a href="https://www.facebook.com/krithick.kalyan/" target="_blank"><img src="./facebook.png"></i></a></li>
<li><a href="https://twitter.com/Krithick1423" target="_blank"><img src="./twitter.png"></i></a></li>
<li><a href="https://www.instagram.com/_____krithick_____/" target="_blank"><img src="./instagram.png"></i></a></li>
<li><a href="https://github.com/krithick14/" target="_blank"><img src="./github.png"></i></a></li>
<li><a href="https://www.linkedin.com/in/krithickkalyan" target="_blank"><img src="./linkedin.png"></i></a></li>
</ul>
</section>
<div id="navigation">
<ul>
<li><a href="#">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<script type="text/javascript">
function toggle(){
var sec = document.getElementById('sec');
var nav = document.getElementById('navigation');
sec.classList.toggle('active');
nav.classList.toggle('active');
}
</script>
</body>
</html>