Chapter 3 covers essential concepts of web design, focusing on HTML and CSS. It explains the definitions, uses, and syntax of CSS, including internal, external, and inline styles, as well as various selectors and properties. The chapter also highlights the importance of CSS in controlling the appearance of web pages.
Chapter 3 covers essential concepts of web design, focusing on HTML and CSS. It explains the definitions, uses, and syntax of CSS, including internal, external, and inline styles, as well as various selectors and properties. The chapter also highlights the importance of CSS in controlling the appearance of web pages.
1. The expanded form of HTML? Hyper Text Markup Language 2. Which is used for the reusability of codes ? CSS 3. What is the full form of CSS? Cascading Style Sheet 4. WHO was suggested the idea of CSS ? Hakon Wium Lie and Bert Bos 5. In ………… css the properties are defined using element selector or class selector inside the “<style> tag” Internal 6. In ……… css one or more webpages are included in a separate file with .css extension External 7. Use the colon (:) sign to separate property and value. true or false ? True 8. No need to use the semicolon sign (;) after every property. true or false ? False 9. What is the full form of DSLR ? Digital single-lens reflex 10. The style is created in the same name of the tag itself is called …………. selector Element selector 11. Which tag is compulsory for creating internal cascading style? <style> 12. p.cyan { color : # ffooff; } What is the class name of the above code ? Cyan 13. In a webpage, different styles of a tag can be used in different places by using ……… selector Class selector
14. Which is the extension of cascading style sheet ?
Css 15. The HTML tag used for adding paragraph content when creating a web page………. <p> …….. </p> 16. To which HTMLtag should we add internal cascading style ? <syle> ……… </style> 17. What is the full form of WCMS ? Web Content Management System 18. Name the attribute of link tag used to include cascading style file namely style.css ? Href 19. What is the function of cascading style sheets while making a webpage? directs how a webpage should be displayed in Mark-up Language. 20. h2 tag headings of a web page using Cascading style sheet? h2{background:green;} 21. While creating webpages, styles can be included along with the html tags using cascading style. what it is called? Inline.CSS 22. Which codes can be used in a css file for applying same font family to h2 headings of a web page using External cascading style? h2{font-family:DejaVu Sans} 23. When creating Web sites, which of the following features can be used to define margins, fonts, colors? Cascading Style Sheets 24. When Preparing a web Page using cascading style , which tag can be used to define font size? <p style=”font-size:24px;”) 25. It was decided to give the color # 952CBA to the headings in a webpage. Using cascading style sheet Which tag should be used? h2 {color:#952CBA;} 26. Which tag can be used to give the letters in a paragraph, the font family” Ubuntu condensed” using cascading style inline method in a webpage. <p style=”font-family: Ubuntu Condensed;”>.....<p/> 27. When we create webpage, Which icons should be included after the name of the tag to give the attributes of a tag in Cascading Styles? {} 28. While using cascading styles in web pages, which attributes is used to define font name? Font-family 29. Which is the symbol used for separating the style and value of a selector while preparing Cascading style? Colon(:)