HOW DO I USE AN EXISTING CSS TEMPLATE ON A VISUAL STUDIO PROJECT I’VE ALREADY STARTED?
I’m perplexing to have the elementary web store in visible college of music as well as have already proposed though am compulsory to request the giveaway web css template as well as can’t figure out how. Please help.
Filed under: web design
to attach css use this line in your html header
<link rel="stylesheet" href="file.css" type="text/css">
css attaches to tags such as
tag
<body>
in css
body{
…
}
if the css says
h1.class1{
…
}
h1 refers to the tag <h1>
and class1 refers to more specific…
you use h1.class1 in html by saying
<h1 class="class1">