Answer:
Most HTML tags are fixed
Explanation:
There are various kind of technology one can use for designing web application. A web designer should know HTML, CSS and other basic building block of web development.
HTML meaning hypertext markup language is used to define the basic structure of a web page . HTML has tags which are used to declare the contents on the web page. The tags includes anchor(<a>), paragraph tag(<p>),header tag(<h1>).
CSS which is known as Cascading style sheet describes the presentation of the web pages.
Other tags in HTML includes <img>, <link>, <ul> etc and generally this tags are HTML tags which are fixed for a particular kind of job . For example you can't use an image tag <img> to enclose video instead you use a video tag <video> tag. The header tag <h1> cannot be represented like a paragrapgh tag<p> on the web page. The both of them serve specific purpose and are fixed.
A. White absorbs all light and reflects none so it is cooler.
To add or remove space before or after a paragraph, users should select the Line and Paragraph Spacing icon.
Public int setLimit(parameter) {
if (parameter > 10) {
return 10;
} else {
return parameter;
}
}
Loop is a control structure that causes a statement or group of statements to repeat.Before entering a loop, the first input, or the accumulator where the total will be kept is retrieved to an initial value, usually zero.