-
HTML keyword enclosed in angle brackets
-
<start tag>mark up text</end tag>
Element
-
What part of this is the attribute
<meta charset="utf-8">
charset="utf-8"
-
an element that does not have mark up text, nor does it have the end text
- void element
- <meta charset="utf-8">
-
Each HTML document must start with
<!DOCTYPE html>
-
HTML code is case
insensitive
-
Head section
- container for all head elements, title element is required
- optional elements: meta, style, script
-
Body elements
Defines the document body, can use many HTML elements
-
-
Header
A page can have multiple header elements, creates header for each sectioning element, usually includes a heading element
-
-
-
Nav
used to group navigation links
-
Figure and figure caption
a figure caption can be associated with a group of figures (omg, chart, table)
-
article
used to make a standalone section, e.g. news article, story comment
-
section
Used to define a group of related content, use h1-h6 to define each section
-
summary and details
Summary element displays a right pointing arrow next to a summary when the summary is clicked, the arrow points downward and show the details element
-
aside
Used to represent contact that is tangibly related to the content surrounding it
-
mark
used to highlight parts of our text
-
Internal hyper link ex.
<a href = "file.html#internaltitle>text</a>
-
Input type's for forms
text, password, checkbox, radio, hidden, submit, reset, color, number, month, range, URL, Search, email
-
wbr
specifies where in a text it would be ok to add a line-break
-
Drop down menu
- <select name = "something">
- <option selected> something 1</option>
- <option> something 2 </option>
- </select>
-
Starting a form
<form method = "post" action = "www.randomsite.com">
-
Place holder
the value in grey the textbox already displays
-
Autocompelete
browser will cache users past responses
|
|