Computer Applications
How do you tell the browser you are creating a styling section with an internal style sheet ?
<style type="css"></style><class type="css"></class>class type="text/css"></class><style type="text/css"></style>
CSS
3 Likes
Answer
<style type="text/css"></style>
Reason — To embed a style sheet in a web page, we use the <style> tag only within the <head> tag of a web page in the following way:
<HEAD>
<STYLE TYPE = "TEXT/CSS">
... CSS rules ...
</STYLE>
</HEAD>
Answered By
2 Likes
Related Questions
The acronym CSS stands for what ?
- Carrot System Style
- Correlated Styling System
- Cascading Style Sheets
- Canvas Styling System
What property would you use to create space between the element's border and inner content ?
- margin
- spacing
- padding
- border
To reference a style sheet across multiple HTML pages, how would you define your CSS ?
- Inline Style
- Internal Style Sheet
- External Style Sheet
- CSS is meant for only one page
What is the correct CSS syntax for making all the
<span>elements bold ?- span {text-size:bold}
- span {font-weight:bold}
<span style="font-size:bold"><span style="text-size:bold">