To add javascript, you can use:
drupal_add_js
And similar for css:
drupal_add_css
But what if I just want to add html at the end of my page. I.e. Add a div with some text in it at the end of the page?
|
|
|
|
|
|
|
You can add the following to your theme's template.php file:
|
|||
|
|
|
|
You could write a block to do it and put the block in the colsure. |
||
|
|
|
|
...or, probably not as recommended as the other answers, but more direct, you can add the html straight to the page.tpl.php file. |
||||
|