Week 1: Git, HTML and CSS Flashcards
Hypertext
Another word for link
Markup language
A system for adding district instructions for how text should be formatted. HTML is an example.
< >
Angle brackets used in HTML to indicate instructions for the browser.
Block Elements
HTML elements that create a “block” in the display by appearing on their own line.
vs
Opening vs closing tags
#
Examples of Block Element Tags that are 1 tab from
Tags
HTML annotations which indicate how the text should be formatted.
End tag
Alternate name for closing tag.
Inline Element
HTML elements that do not appear on their own line, but instead share with other elements.
Examples of inline elements
Attribute
Additional information provided to an HTML tag. Ex- href attribute in an tag provides the URL a link should travel to.
Relative Path
A path to a file within the project itself. Usually referring to the location provided in as the href attribute in an tag.
Self-closing
HTML elements that does not need a closing tag.
README
A file located in a project’s repository that provides detailed information about a project.
Markdown
Simple language that uses marking annotation to format text for display in a browser.
Open Source
Software that is freely distributed by its creator(s) for use and distribution.
CSS
Cascading Style Sheets - A language used to program the visual appearance of HTML elements.
Rule
A block of CSS that details particular stylistic instructions to be applied to an HTML element. This whole thing is a rule: h2 { font-style: italic; }
Selector
The part of a CSS rule that determines which HTML elements the rule applies to The h2 is the selector: h2 { font-style: italic; }
Property
The characteristic a CSS rule is altering. Font-style is the property in this rule: h2 { font-style: italic; }
Value
The attribute a CSS rule is applying to the specific property. Italic is the value in this rule: h2 { font-style: italic; }
styles.css
The stylesheet file
Dev Tools or Developer Tools
An area of the Google Chrome web browser that offers debugging options, and other tools to assist in locating problems.
JavaScript Console
Location in Google Chrome where a website’s errors are logged and other debugging tools are available.
