Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,52 @@
</head>

<body>
<div class="theme-selector">
<label for="theme">Choose Background:</label>
<select id="theme">
<option value="default">Light Blue</option>
<option value="gradient">Gradient</option>
<option value="dark">Dark</option>
<option value="pastel">Pastel</option>
<option value="mint">Mint Green</option>
</select>
</div>

<div class="main">
<center>
<div class="about">
<a href="https://www.instagram.com/vinitshahdeo">
<img src="./picture.png" class="main-img">
</a>
<h3><span>Vinit</span></h3>
<button class="btn btn-lg btn-yellow">Hello, Glad to see you here!</button>
<p>I am a front-end architect from Ranchi. You can view my works
<a href="https://github.com/vinitshahdeo">here</a>.
I love to cook Maggie when I'm not cooking any website.
Presently I am undergraduate at
<a href="http://www.vit.ac.in/" target="_blank">VIT University Vellore.</a>
<br/><span>Thank You for Visiting!</span>
</p>
<p>Ping me at <a href="mailto:[email protected]">[email protected]</a></p>
<hr>
<ul class="social">
<li><a href="http://www.facebook.com/vinit.shahdeo" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/vinitshahdeo" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://twitter.com/Vinit_Shahdeo" target="_blank"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</center>
</div>

<!-- ✅ Small JS script -->
<script>
const themeSelect = document.getElementById('theme');
themeSelect.addEventListener('change', function () {
document.body.className = ''; // remove old theme
document.body.classList.add(this.value);
});
</script>


<div class="main">

Expand Down
Loading