196k views
1 vote
In Web design, What kind of tag is referred to as fixed ?


User TizianoL
by
4.1k points

1 Answer

3 votes

Answer:

Most HTML tags are fixed

Step-by-step 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.

User James Harrington
by
4.1k points