-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (145 loc) · 5.61 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
<!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="style.css" />
<link rel="icon" href="logo.png" type="image/png">
<script src="https://kit.fontawesome.com/f613a155c9.js" crossorigin="anonymous"></script>
<style>.nav-list li a i {
margin-right: 8px; /* Adjust the value as needed */
}</style>
</head>
<body>
<header>
<nav>
<div class="left">My Portfolio</div>
<div class="right">
<ul class="nav-list">
<li><a href="http://127.0.0.1:5500/"><i class="fa-solid fa-house"></i> Home</a></li>
<li><a href="https://www.linkedin.com/in/srujan-dharma-71808a273/" target="_blank"><i class="fa-solid fa-address-card"></i> About</a></li>
<li><a href="/"><i class="fa-brands fa-servicestack"></i> Services</a></li>
<li><a href="https://github.com/srujan0404" target="_blank"><i class="fa-solid fa-diagram-project"></i> Projects</a></li>
<li><a href="https://twitter.com/DharmaSrujan" target="_blank"><i class="fa-solid fa-address-book"></i> Contact</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="firstSection">
<div class="leftSection">
Hi, my name is <span class="purple">Srujan</span>
<div class="inlinetext">I am a aspiring</div>
<div class="animation"><span id="element"></span></div>
</div>
<div class="rightSection">
<img src="bg.png" alt="bg" />
</div>
</section>
<hr />
<section class="secondsection">
<span class="text-gray">What I have done so Far</span>
<h1>Past Experience</h1>
<div class="box">
<div class="vertical">
<img class="image-video" src="video editor.png" alt="designer">
<div class="vertical-title">
Video Editor (2020 - present)
</div>
<div class="vertical-desc">
From 2020 till present, I've been an adept editor, shaping projects with precision. Words woven, ideas refined—empowering effective communication.
</div>
</div>
<div class="vertical">
<img class="image-Animator" src="Animator.webp" alt="designer">
<div class="vertical-title1">
Video Animator (2022 - present)
</div>
<div class="vertical-desc">
As a video animator since 2022, my expertise brings life to concepts, blending creativity and technology seamlessly for captivating visual storytelling.
</div>
</div>
<div class="vertical">
<img class="image-code" src="coder.png" alt="designer">
<div class="vertical-title">
Tech Enthusiast
</div>
<div class="vertical-desc">
Passionately exploring tech's evolving realm, embracing innovation, and sharing its boundless potential as an enthusiastic tech aficionado.
</div>
</div>
<div class="vertical">
<img class="image-web" src="web developer.png" alt="designer">
<div class="vertical-title">
Web Developer (2023 - present)
</div>
<div class="vertical-desc">
Embarking on a web development journey, eagerly crafting digital experiences. Embracing coding challenges, design intricacies, and the art of building online landscapes.
</div>
</div>
<div class="vertical">
<img class="image-photo" src="photo editor.png" alt="designer">
<div class="vertical-title">
Photo Editor ( 2020 - present)
</div>
<div class="vertical-desc">
I'm an adept photo editor with intermediate experience, skilled in transforming images, enhancing visual narratives, and conveying emotions through creative manipulation.
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer">
<div class="footer-first">
<h3>Srujan's Portfolio</h3>
</div>
<div class="footer-second">
<h4>Contact</h4>
<ul>
<li><a href="https://twitter.com/DharmaSrujan" target="_blank">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/srujan-dharma-71808a273/" target="_blank">Linkedln</a></li>
<li><a href="https://github.com/srujan0404" target="_blank">Git hub</a></li>
</ul>
</div>
<div class="footer-third">
<h4>Hobbies</h4>
<ul>
<li>Games</li>
<li>Ai</li>
<li>Table Tennis</li>
</ul>
</div>
<div class="footer-fourth">
<h4>Favorites</h4>
<ul>
<li>Business</li>
<li>Web Development</li>
<li>Game Development</li>
</ul>
</div>
</div>
<div class="footer-right">
myportfolio.com | All rights reserved
</div>
</footer>
<script src="script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed("#element", {
strings: [
"Graphic Designer",
"Web Developer",
"Tech Enthusiast",
"Athlete",
"Video Editor",
"Animator",
],
typeSpeed: 70,
});
</script>
</body>
</html>