<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Title here!<title/>
<link rel="stylesheet" type="text/css" href="yourFile.css">
<head/>
<body>
<body/>
<html/>
$(function () {
var includes = $('[data-include]')
$.each(includes, function () {
var file = 'views/' + $(this).data('include') + '.html'
$(this).load(file)
})
})
<div data-include="header"></div>
<div data-include="footer"></div>
<head>
<link rel="import" href="/path/to/imports/stuff.html">
</head>