Back yo home

QUESTION AND ANSWER

  1. what is the full form of HTML?

  2. stands for hiper text mark up langue.

  3. what is a HTML tag?

  4. A tag is a keyword that starts with less than and end with greather than.

  5. what is element?

  6. tagname> content goes here--/tagname>.

  7. What is attributes?

  8. HTML attributes provide additional information about HTML elements.

    HTML element can have attributes.

    Attributes unually come in name/value pairs like name="value".

    Attributes are always sarifies in the start tag.

  9. what is HTML element?

  10. An HTML element is defined by a start tag,some contect,and an end tag.

  11. what is a block element?

  12. A block element starts on a new line.A block level element takes up the full width avaible.Ex p div.

  13. What is an inline elements?

  14. An inline element does not start on a new line.It only takes up as much width as nessary.Ex:a img.

  15. what is mean by padding?

  16. padding is the internal gap between the boder of the element and the contant/text inside it.

  17. what is mean by margin?

  18. margin is the external gap between the border of the HTML element and the contant/text outside it.

  19. what is CSS comant?

  20. broser will ignor the comant.

  21. what is mean by CSS slector?

  22. CSS select are used to "find" [or selector] the HTML element you want to style.

  23. what is mean by Broser consold?

  24. Broser consold is used to inpect the HTML element and CSS style of a webpage corcently display the broser.

  25. what is the full form of CSS?

  26. cascading,,sheets.