-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (163 loc) · 7.01 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ashish - Developer Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<nav >
<div class="left">Ashish's Portfolio</div>
<div class="right ">
<ul>
<li><a href="#firstsec">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#Second">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li class="tl"><a href="#cont">Contact Me</a></li>
</ul>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<main>
<section id="firstsec"class="firstsec">
<div class="leftsec">Hi My name is<span class="purple"> Ashish</span>
<div>and i am a </div>
<span style="color: blueviolet;" id="element"></span>
</div>
<div class="rightsec">
<div id="lottiAnime"></div>
</div>
</section>
<hr>
<section id="about" class="about">
<h1>About</h1>
<div class="aboutsec">
<div class="rightsec">
<h2 class="about-text">As an aspiring <span class="purpleAgain">Software Engineer</span>, I am a dedicated engineering
student with a keen interest in <span class="purpleAgain">Web Development</span>,<span class="purpleAgain"> Data Structures
</span>and <span class="purpleAgain">Algorithms</span>. Through my proficiency in designing intuitive web
interfaces and my enthusiasm for solving complex problems using
code, I have developed a strong foundation in software development.</h2>
</div>
</div>
</section>
<hr>
<section data-index="1" id="Second" class="secondsec">
<h1>Skills</h1>
<div class="list1 hidden show" >
<div class="html">
<h2 class="words">HTML</h2>
</div>
<div class="css">
<h2 class="words">CSS</h2>
</div>
<div class="Javascript">
<h2 class="words">JAVASCRIPT</h2>
</div>
</div>
<div class="list2 hidden show">
<div class="dsa">
<h2 class="words">DSA</h2>
</div>
<div class="Python">
<h2 class="words">React.js</h2>
</div>
<div class="MachineLearning">
<h2 class="words">Bootstrap</h2>
</div>
</div>
</section>
<hr>
<section id="projects" class="secondsec">
<h1>Projects</h1>
<section id="cont">
<div class="maind">
<div class="fird">
<a href="https://matrs-2024.netlify.app/home"><img src="./matrs.png" alt=""><a href=""></a>
</div>
<div class="secd">
<a href="https://blue-chameleon-kit.cyclic.app/"><img src="./weatherp.png" alt=""><a href=""></a>
</div>
<div class="thid">
<a href="https://ashishdochania.github.io/Expense_Tracker/" target="_blank"><img src="./expense.png" alt=""></a>
</div>
</div>
</section>
</section>
</main>
<footer>
<section id="cont">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="bi bi-envelope-at"></i> dochania.1@iitj.ac.in</p>
<p><i class="bi bi-telephone"></i> 7296853131</p>
<div class="social-icons">
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="contact-right">
<form>
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="Email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<button class="btn" type="submit">Submit</button>
</form>
</div>
</div>
<div class="copyright">
<p>Copyright © Ashish Dochania</p>
</div>
</div>
</section>
</footer>
<script src="index.js"></script>
<!-- Include the Lottie library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.8/lottie.min.js"></script>
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<script>
var typed = new Typed('#element', {
strings: ['Engineer','<i>Web</i> Developer', ' Programmer'],
typeSpeed: 60,
backSpeed:60,
backDelay:60,
loop: true
});
</script>
<script>
// Load and initialize the Lottie animation
const animationContainer = document.getElementById('lottiAnime');
const animationOptions = {
container: animationContainer,
renderer: 'svg', // Use 'svg' or 'canvas'
loop: true,
autoplay: true,
path: './animation_ll27iknn.json', // Replace with your animation JSON file path
};
const animation = lottie.loadAnimation(animationOptions);
</script>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<script type="text/javascript">
(function(){
emailjs.init("s6sqOy9U7OkIZmxmz");
})();
</script>
</body>
</html>