CSS
How do you insert a comment in a CSS file?
/* hello */
Which HTML tag is sued to define an internal style sheet?
<style>
Which CSS property is used to change the text color of an element?
Color
How do you display hyperlinks without an underline?
a {text-decoration:none;}
Which property is used to change the background color?
background-color
Which property is used to change the font of an element?
both font-family and font can be used
Which CSS property controls the text size?
font-size
Which HTML attribute is used to define inline styles?
style For reference: Inline CSS is used to apply a unique style to a single HTML element. ex)<h1 style="color:blue;">This is a Blue Heading</h1>
How do you make each word in a text start with a capital letter?
text-transform: capitalize