FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

W3Data Includes


Learn how to include HTML snippets in HTML.


The HTML

Save the HTML you want to include in an .php file:

content.php

<a href="http://tutorials/html/">HTML</a><br>
<a href="http://tutorials/css/">CSS</a><br>
<a href="http://tutorials/bootstrap/">Bootstrap</a><br>
<a href="http://tutorials/js/">JavaScript</a><br>
<a href="http://tutorials/sql/">SQL</a><br>
<a href="http://tutorials/php/">PHP</a><br>
<a href="http://tutorials/subhodayacss/">subhodaya.css</a><br>

Include the HTML

Including HTML is done by using a subhodaya-include-html attribute:

Example

<div subhodaya-include-html="content.php"></div>

Add the JavaScript

HTML includes are done by JavaScript.

Make sure your page has subhodadata.js loaded and call w3IncludeHTML():

Example

<script>
w3IncludeHTML();
</script>

Full Example

Example

<!DOCTYPE html>
<html>
<script src="http://tutorials/lib/subhodadata.js"></script>
<body>

<div subhodaya-include-html="content.php"></div>

<script>
w3IncludeHTML();
</script>

</body>
</html>
Try it Yourself »

Include Many HTML Snippets

You can include any number of HTML snippets:

Example

<!DOCTYPE html>
<html>
<script src="http://tutorials/lib/subhodadata.js"></script>
<body>

<div subhodaya-include-HTML="h1.php"></div>
<div subhodaya-include-HTML="content.php"></div>

<script>
w3IncludeHTML();
</script>

</body>
<html>
Try it Yourself »