Difference between dynamic style sheet and inline style sheet
Answers
Answered by
2
Dynamic style sheets are those stylesheets which are manipulated by server side or client side languages... like PHP and JavaScript.
Inline style sheets are those stylesheet which are in <style</style> tags
for example
<style>
body {
color: hotpink;
}
</style>
Inline style sheets are those stylesheet which are in <style</style> tags
for example
<style>
body {
color: hotpink;
}
</style>
Similar questions