HTML/CSS Flashcards
in HTML, How many heading tags are there?
6
_____ tags define structure and express the meaning of content.
Semantic tags
______ elements, such as <div>div</div> they take up the whole width of its parent elements width by default
Block Elements
______ elements, such as <span>span</span> only takes up as much space as the content needs.
Inline Element
what’s the difference between Head vs Header vs Heading
head is the tag at the top of your page containing your meta-tags, styles, scripts and title. Header : header tag contains information related to the title and heading related content which is display on web page
Can you style with HTML?
yes with html tags, but not recommended
what are the two types of lists?
Ordered List and Unordered List
These tags are highly useful tags that you can link either internal or external webpages
Anchor tags
Anchor tags use _____ attribute to define their destination
href attribute
Anchor tags use _____ attribute to avoid the most annoying phenomenon of anchor tags: opening in the same browser tab
target attribute
what does css stand for?
Cascading Style Sheets
what does html stand for?
Hypertext markup language
How are we be able to target certain elements to apply stylings to?
CSS Selectors
What are some ways to express colors in CSS?
plain language, hexadecimal, RGB/RGBA
These are selectors that targets certain state of an element, such as hover, clicked, active, etc. They are denoted with : (:hover, :clicked, :active)
Pseudo-Class