-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 2.68 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 2.68 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
<!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>Personle Portfolio Website</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="hero">
<nav>
<img src="images/logo.png" class="logo">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about/index.html">EXPERIENCE</a></li>
<li><a href="skill/index.html">SKILL</a></li>
<li><a href="blog/index.html">ARTICLE</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<div class="detel">
<h1>I,M <span class="multiText"> Siddharth Satpute </span></h1>
<p>This is my official Portfolio website to showcase my
all works related to <br> Devops and Cloud Technology . </p>
<a href="https://drive.google.com/file/d/18VCBGt1flW68cnwEJ6a7HAatXIWamD36/view?usp=share_link">Download CV</a>
</div>
<div class="images">
<img src="images/shape.png" class="shape">
<img src="images/girl.png" class="girl">
</div>
<div class="social">
<a href="https://twitter.com/Sid2631" ><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/sid__2631/"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/siddharth-satpute/"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/sid2631"><i class="fab fa-github"></i></a>
<a href="https://medium.com/@sid2631"><i class="fab fa-medium"></i></a>
</div>
</div>
<script src="https://unpkg.com/typed.js@2.0.15/dist/typed.umd.js"></script>
<script>
var typingEffect = new Typed(".multiText",{
strings :["Coder"," Software Engineer","Devops Engineer"],
loop : true,
typeSpeed : 105,
backSpeed : 80,
backDelay : 1500,
showCursor: true, // Show cursor
cursorChar: "_",
})
</script>
</body>
</html>