html css snippets code example
Example 1: Display HTML snippets in HTML
/* 1. First search "html entities converter" in Google
and convert the code snippet in html entities form */
2. /* Paste the code inside this snippet : */
<pre>
<code>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</code>
</pre>
Example 2: html insert html snippets
<head>
<link rel="import" href="/path/to/imports/stuff.html">
</head>
Example 3: html insert html snippets
$(function () {
var includes = $('[data-include]')
$.each(includes, function () {
var file = 'views/' + $(this).data('include') + '.html'
$(this).load(file)
})
})