Where should css go in .html page? -
i have index.html page , style.css file.
i have style class called .slider
, style class called .logo
. should put both .slider
, .logo
inside style.css page or should put .slider
in index.html , .logo
inside .css?
im asking because dont know if should put styles related 1 page inside global style.css or should put inline in page applies to?
styles can go in 1 of 3 places.
- inline on element itself
- in html page
- in separate file
i suggest either putting in <style>
tag in <head>
of html or putting in separate file, either work well. having styles in separate file means reuse styles on page if needed.
Comments
Post a Comment