HTML Basics Flashcards
What does HTML stand for?
Hyper Text Markup Language
Is HTML a full fledged programming language?
No. It is a limited languge in that its used to “mark up” content for web browsers. In other words, it tells browsers what kind of data they are dealing with.
What does a11y or A11Y stand for?
Accessibility ( in regards to programming)
What is programming with A11Y in mind?
Programming with the usability of different types of end users in mind ( sighted vs unsighted, etc).
What are Google Chrome Developer Tools?
Tools that can be used to inspect and modify the HTML on any site. See a feature on a site you like and wonder how it’s implemented? Developer Tools makes this (and much more) possible.
What is an element in HTML?
To generalize, an HTML element usually consists of some content (could be plain text or additional HTML elements) wrapped by opening and closing tags.
What is an Attribute in HTML?
Attributes are for setting properties on an HTML element
What is an Attribute in HTML?
Attributes are for setting properties on an HTML element
What are self-closing tags?
Most HTML elements require an opening/closing tag structure,
Yet, some are self-closing and do not have inner content.
ex: <img></img> element- its used to embed images in an html doc, needs no inner content or closing tag.
<p>This paragraph has an image: <img></img></p>
.
Attributes - more about
Some attributes, like class and id, are valid on almost any HTML element.
We present them now because they are core HTML attributes that can be used on all but a handful of elements (specifically, they can’t be used on: , , , , or ).
Other attributes are specific to a particular element. The href attribute on our anchor element above is specific to anchor elements.
Whats are HTML and CSS used for?
HTML is aboutstructuringcontent while CSS
Ex: HREF coded out
<a>avlink</a>
HTML attributes look like what?
HTML attributes consist of a name and a value enclosed in quotes
Elements- Anchors
<a> </a><a></a> usually some website url will be the contents
What are Tags?
Used to mark of the beginning and ending to an element