-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (152 loc) · 4.81 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
<!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" />
</head>
<body>
<header class="slide-from-top">
<!-- Add animation class -->
<nav>
<ul class="menu">
<li><a href="#about">Home</a></li>
<li>
<a href="https://roboticslover.github.io/projects/" target="_blank"
>Projects</a
>
</li>
<li>
<a
href="https://roboticslover.github.io/Innovation/"
target="_blank"
>Innovation</a
>
</li>
</ul>
</nav>
</header>
<div class="container">
<section id="about" class="slide-from-bottom">
<!-- Add animation class -->
<h2>About Me <span class="emoji"></span></h2>
<div class="table-container">
<table>
<tr>
<td><strong>Name👽:</strong></td>
<td>Sachin Rathore</td>
</tr>
<tr>
<td><strong>Profession💼:</strong></td>
<td>Data Scientist</td>
</tr>
<tr>
<td><strong>Education🎓:</strong></td>
<td>B.Tech(3rd year)</td>
</tr>
<tr>
<td><strong>Strengths💪:</strong></td>
<td>I never give up!!!</td>
</tr>
<tr>
<td><strong>Dream🌌:</strong></td>
<td>A.G.I.</td>
</tr>
</table>
</div>
</section>
<div class="horizontal-line"></div>
<!-- Add horizontal line -->
<section id="skills" class="slide-from-bottom">
<!-- Add animation class -->
<h2>Skills <span class="emoji"></span></h2>
<div class="table-container">
<table>
<tr>
<td><strong>Data Analysis📊</strong></td>
<td>✔️</td>
</tr>
<tr>
<td><strong>Machine Learning🤖</strong></td>
<td>✔️</td>
</tr>
<tr>
<td><strong>Deep Learning🧠</strong></td>
<td>✔️</td>
</tr>
<tr>
<td><strong>Natural Language Processing📝</strong></td>
<td>✔️</td>
</tr>
<tr>
<td><strong>Generative A.I.🎨</strong></td>
<td>✔️</td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<a href="resume.pdf" class="btn" download>Download Resume</a>
</td>
</tr>
</table>
</div>
</section>
<div class="horizontal-line"></div>
<!-- Add horizontal line -->
<section id="contact" class="slide-from-bottom">
<!-- Add animation class -->
<h2>Contact Me <span class="emoji"></span></h2>
<div class="table-container">
<table>
<tr>
<td><strong>Email📧:</strong></td>
<td>
<a href="mailto:[email protected]"
>
</td>
</tr>
<tr>
<td><strong>Contact No.📞:</strong></td>
<td><a href="tel:+919461044141">+91 9461044141</a></td>
</tr>
<tr>
<td><strong>LinkedIn💼:</strong></td>
<td>
<a
href="https://www.linkedin.com/in/sachin-rathore-97776a283/"
target="_blank"
>https://www.linkedin.com/in/sachin-rathore-97776a283/</a
>
</td>
</tr>
<tr>
<td><strong>GitHub🐱💻:</strong></td>
<td>
<a href="https://github.com/roboticslover" target="_blank"
>https://github.com/roboticslover</a
>
</td>
</tr>
<tr>
<td><strong>Instagram📷:</strong></td>
<td>
<a
href="https://www.instagram.com/sachin_rathore777/"
target="_blank"
>https://www.instagram.com/sachin_rathore777/</a
>
</td>
</tr>
</table>
</div>
</section>
</div>
<footer class="slide-from-bottom">
<!-- Add animation class -->
<div class="container">
<p>© 2024 made with ❤️ by Sachin</p>
</div>
</footer>
</body>
</html>