Difference between revisions of "Including a file"

From Conservapedia
Jump to navigation Jump to search
(adding links to remove from deadend pages list)
(→‎CSS in HTML: clean up & uniformity)
 
Line 3: Line 3:
 
==CSS in HTML==
 
==CSS in HTML==
  
<link rel="stylesheet" type="text/css" href="class.css" /><ref> [http://www.webstartcenter.com/howto/css_inc.php Ways to include CSS in your page]</ref>
+
<link rel="stylesheet" type="text/css" href="class.css" /><ref>[http://www.webstartcenter.com/howto/css_inc.php Ways to include CSS in your page]</ref>
  
 
==[[Javascript]] in [[HTML]]==
 
==[[Javascript]] in [[HTML]]==

Latest revision as of 14:17, July 13, 2016

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