-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
34 lines (33 loc) · 1.02 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="portfolio.css">
<link rel="icon" href="developer.png">
</head>
<body>
<div class="hero">
<nav>
<img src="dev2.png" class="logo">
<ul>
<li><a href="">Home</a></li>
<li><a href="Aboutp.html" target="_blank">About</a></li>
<li><a href="project.html" target="_blank">Projects</a></li>
<li><a href="Activities.html" target="_blank">Activities</a></li>
<li><a href="Contact.html" target="_blank">Contact</a></li>
</ul>
</nav>
<h1>Praveen<br>Kumar</h1>
<span id="element"></span>
</div>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script>
var typed = new Typed('#element', {
strings: ['Programmer','Adaptive Thinker','Web Developer'],
typeSpeed: 50,
});
</script>
</body>
</html>