Skip to content

Instantly share code, notes, and snippets.

View VishnuJin's full-sized avatar
💭
Rust

VishnuJin VishnuJin

💭
Rust
View GitHub Profile
@VishnuJin
VishnuJin / awakenowl.cmd
Last active March 2, 2023 06:09
Awaken OWL
title awakenOwl
echo awakenOwl in-progress....
cscript awakenowl.vbs
@VishnuJin
VishnuJin / index.html
Created May 6, 2019 09:46
Modal - CSS & Vanilla JS
<button id="modal-btn" class="button">Click Here</button>
<div id="my-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="close">&times;</span>
<h2>Modal Header</h2>
</div>
<div class="modal-body">
<p>This is my modal</p>
@VishnuJin
VishnuJin / index.html
Created April 28, 2019 11:21
Pure CSS Select
<h1>Pure CSS Select</h1>
<div class="select">
<select name="slct" id="slct">
<option selected disabled>Choose an option</option>
<option value="1">Pure CSS</option>
<option value="2">No JS</option>
<option value="3">Nice!</option>
</select>
</div>