Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
roboticslover authored Mar 5, 2024
0 parents commit 0f8bf0b
Show file tree
Hide file tree
Showing 2 changed files with 318 additions and 0 deletions.
156 changes: 156 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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:roboticslover069@gmail.com"
>roboticslover069@gmail.com</a
>
</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>&copy; 2024 made with ❤️ by Sachin</p>
</div>
</footer>
</body>
</html>
162 changes: 162 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
/* General styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f1f1f1; /* Set background color */
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
text-align: center;
padding-bottom: 100px; /* Ensure space for footer */
}

header {
background-color: #333;
color: #fff;
padding: 20px 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1000; /* Ensure it's above other content */
}

nav {
text-align: center;
}

.menu {
list-style-type: none;
margin: 0;
padding: 0;
}

.menu li {
display: inline-block;
margin: 0 10px;
}

.menu li a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease; /* Add transition */
}

.menu li a:hover {
color: #ffd700;
}

section {
padding: 50px 0;
text-align: center;
position: relative;
overflow: hidden;
margin-top: 70px; /* Adjust to keep space for navbar */
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
width: 100%;
left: 0;
transition: background-color 0.3s ease, height 0.5s ease; /* Add transition */
height: 60px; /* Set smaller height */
z-index: 1000; /* Ensure it's above other content */
}

/* Table styles */
.table-container {
overflow-x: auto;
max-width: 100%;
margin: 0 auto;
}

table {
width: auto;
max-width: 100%;
margin: 0 auto;
border-collapse: collapse;
border-spacing: 0;
}

th,
td {
padding: 10px;
border-bottom: 1px solid #ddd;
text-align: center;
}

/* Button styles */
.btn {
padding: 10px 20px;
background-color: #1da7d1fd;
color: white;
border: none;
cursor: pointer;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease; /* Add transition */
}

.btn:hover {
background-color: #032d5e;
}

/* Animations */
@keyframes slideInFromTop {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(0);
}
}

@keyframes slideInFromBottom {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}

@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

section {
animation: fadeIn 1s ease; /* Add fade in animation */
}

.slide-from-top {
animation: slideInFromTop 0.5s ease;
}

.slide-from-bottom {
animation: slideInFromBottom 0.5s ease;
}

/* Emojis */
.emoji {
font-size: 1.5em;
margin-left: 5px;
}

/* Horizontal line */
.horizontal-line {
width: 100%;
height: 2px;
background-color: #333;
margin: 20px 0;
}

0 comments on commit 0f8bf0b

Please sign in to comment.