i'm busy working on my website NerdyFuture. Now i looked into a lot of CMS' and Drupal seems to be the best option for me. There is a problem though, i want to use all of my css/html and js in drupal. Does anyone exactly know how to do this?
Asked
Active
Viewed 287 times
1 Answers
1
Drupal allows you to write your own template files (.tpl.php, see docs about theming), within a theme you can add your own scripts / css files, using the .info file in your theme (simplest solution) or using the api (drupal_add_js(), drupal_add_css()...) in a custom module or in template.php. You can create blocks wich contains raw HTML (even JS or CSS, not a good option though).
All is here : https://www.drupal.org/documentation/theme
A good start would be to choose a base theme (Zen, Bootstrap, Omega, Mothership...), build your subtheme and start playing with it.
But sure you can do all this in different ways...

Florian Motteau
- 3,467
- 1
- 22
- 42
-
Glad to help, I think you've been downvoted because your question is too general, and shows a lack of personal research (basically what I answered can be easily found). Keep this in mind for next time and good luck. – Florian Motteau Dec 13 '14 at 11:50