Including a file

From Conservapedia
This is an old revision of this page, as edited by Taj (talk | contribs) at 07:29, April 22, 2013. It may differ significantly from current revision.
Jump to navigation Jump to search

Including a file in source code is a very common practice, especially in web page design. However, there are so many ways to do this, that it can be hard for the beginner to keep track.

CSS in HTML

<link rel="stylesheet" type="text/css" href="class.css" />[1]

Javascript in HTML

<script src="myscript.js"></script>

PHP

include 'NiceScript.php';
include 'anything.html';

Notes