Skip to content

Instantly share code, notes, and snippets.

@bennyzhao
Created November 12, 2013 08:42
Show Gist options
  • Save bennyzhao/7427587 to your computer and use it in GitHub Desktop.
Save bennyzhao/7427587 to your computer and use it in GitHub Desktop.
<!--
Using the datalist element,
HTML5 allows you to create a list of data to autocomplete a input field.
Super useful!
Here is a sample code to re-use in your own projects.
Source: http://davidwalsh.name/datalist
-->
<input name="frameworks" list="frameworks" />
<datalist id="frameworks">
<option value="MooTools">
<option value="Moobile">
<option value="Dojo Toolkit">
<option value="jQuery">
<option value="YUI">
</datalist>
<!--
Country drop down list for web forms
Here’s another time saver: A ready-to-use dropdown list with all countries.
Due to the size of the code, please see source directly.
Source: http://snipplr.com/view/4792/country-drop-down-list-for-web-forms/
-->
<!--
I don’t recommend using transparent “spacer” gifs,
but I know that even in 2013, many people are still using them from time to time.
If you’re one of them, you’ll probably enjoy this Base64 encode of a 1*1px “spacer” gif.
Way better than using an image.
-->
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7">
<!--
With the release of the iPhone, Apple introduced a quick way to create call and sms links.
Here is a sample code to keep in your snippet library.
Source: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/Articles/sms.html#//apple_ref/doc/uid/TP40008054-SW1
-->
<a href="tel:1-408-555-5555">1-408-555-5555</a>
<a href="sms:1-408-555-1212">New SMS Message</a>
<!--
In 2013,
most people have finally upgraded from the horrible Internet Explorer 6 which gave nightmares to every front-end developper for years.
But some persons are still using it.
If you want to get rid of this prehistoric browser for good,
here is a very funny code to include in your html pages.
This code will crash IE6. Bam!
Source: http://www.catswhocode.com/blog/html5-code-snippets-to-take-your-website-to-the-next-level
-->
<style>*{position:relative}</style><table><input></table>
<!--
HTML5 allows you to force download of files using the download attribute.
Here is a standard link to a downloadable file.
Source: http://snipplr.com/view/4792/country-drop-down-list-for-web-forms/
-->
<!-- will download as "expenses.pdf" -->
<a href="/files/adlafjlxjewfasd89asd8f.pdf" download="expenses.pdf">Download Your Expense Report</a>
<!--
Are you often embedding Flash files into your html pages?
If yes, you’ll better save the valid flash embed code below for future use.
Source: http://yoast.com/articles/valid-flash-embedding/
-->
<object type="application/x-shockwave-flash"
data="your-flash-file.swf"
width="0" height="0">
<param name="movie" value="your-flash-file.swf" />
<param name="quality" value="high"/>
</object>
<!--
Here is a simple yet powerful code to create a form where the user can enter his location to get directions to a specific place.
Very useful for contact pages.
Source: http://css-tricks.com/snippets/html/get-directions-form-google-maps/
-->
<form action="http://maps.google.com/maps" method="get" target="_blank">
<label for="saddr">Enter your location</label>
<input type="text" name="saddr" />
<input type="hidden" name="daddr" value="350 5th Ave New York, NY 10018 (Empire State Building)" />
<input type="submit" value="Get directions" />
</form>
<!--
HTML5 allows, among other things, to validate emails using a regular expression pattern.
Here is a ready to use input field with the regexp pattern to validate an email address.
Source: http://blog.staffannoteberg.com/2012/03/01/html5-form-validation-with-regex/
-->
<input type="text" title="email" required pattern="[^@]+@[^@]+\.[a-zA-Z]{2,6}" />
<!--
When starting a new project, you need a starter template.
Here is a concise and clean template to serve as a basis for your HTML5 projects.
Source: http://snipplr.com/view/68539/plain-html5-starter-template/
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
</body>
</html>
<!--
HTML5 video with Flash fallback
Another great feature of the new HTML5 specification is definitely the video tag which allows you to easily embed video files.
But unfortunately, some browsers can’t deal with embedded HTML5 video.
So here is a complete code with a flash fallback for older browsers.
Source: http://camendesign.com/code/video_for_everybody
-->
<video width="640" height="360" controls>
<source src="__VIDEO__.MP4" type="video/mp4" />
<source src="__VIDEO__.OGV" type="video/ogg" />
<object width="640" height="360" type="application/x-shockwave-flash" data="__FLASH__.SWF">
<param name="movie" value="__FLASH__.SWF" />
<param name="flashvars" value="controlbar=over&amp;image=__POSTER__.JPG&amp;file=__VIDEO__.MP4" />
<img src="__VIDEO__.JPG" width="640" height="360" alt="__TITLE__"
title="No video playback capabilities, please download the video below" />
</object>
</video>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment