Skip to content

Instantly share code, notes, and snippets.

View ldavidsp's full-sized avatar
🏠
Working from home

Luis Solorzano ldavidsp

🏠
Working from home
View GitHub Profile
@ldavidsp
ldavidsp / index.html
Created May 13, 2019 00:34
Styling <Audio Tag>
<article>
<div class="cont">
<h3>100: Big Ones</h3>
<time>JULY 26, 2016</time>
</div>
<audio class="audio" controls="controls">
<source type="audio/mpeg" src="http://media.blubrry.com/codepen_radio/p/codepen-podcast.s3.amazonaws.com/100.mp3?_=1">
</audio>
</article>
@ldavidsp
ldavidsp / index.html
Last active January 9, 2023 11:07
Material Design Checkbox CSS only
<section>
<h1>Simple material design CSS only checkbox example</h1>
<div class="md-checkbox">
<input id="i2" type="checkbox" checked>
<label for="i2">Item 1</label>
</div>
<div class="md-checkbox">
<input id="i1" type="checkbox">
<label for="i1">Item 2</label>
</div>
@ldavidsp
ldavidsp / index.html
Created June 14, 2019 20:34
jQuery Input Masks
<form action="">
<div>
<label for="cc">Credit Card</label>
<!-- Set via HTML -->
<input id="cc" type="text" data-inputmask="'mask': '9999 9999 9999 9999'" />
</div>
<div>
<label for="date">Date</label>
<div class="table-responsive">
<table class="table table-hover" id="job-table">
<thead>
<tr class="text-center">
<th scope="col">Sr.No.</th>
<th scope="col">Company Name</th>
<th scope="col">Technology</th>
<th scope="col">Total Resumes</th>
<th scope="col">Job Title</th>
<th scope="col">Total Score</th>
@ldavidsp
ldavidsp / index.html
Created July 8, 2019 22:50
VALIDAR SOLO NUMEROS
<!--SOLO NUMEROS-->
<h1>SOLO NUMEROS</h1>
<input type="text" class="validar"/>
@ldavidsp
ldavidsp / index.html
Created July 29, 2019 22:44
jQuery UI Date Picker
<div class="date-picker">
<div class="input">
<div class="result">Select Date: <span></span></div>
<button><i class="fa fa-calendar"></i></button>
</div>
<div class="calendar"></div>
</div>
@ldavidsp
ldavidsp / datepicker-materialize-issue.markdown
Created July 30, 2019 20:03
DatePicker Materialize Issue