click below
click below
Normal Size Small Size show me how
HTML Meaning
Hypertext Markup Language
| Term | Definition |
|---|---|
| Hypertext | (helps with embeds such as images, too)Text that is organized to connect certain items) |
| Markup | a style guide for typesetting anything to be printed in hardcopy or soft copy format |
| Language | A language made for computer systems to understand |
| HTML Tags | A HTML Tag consists of EX:<p> </p> <p> is an opening tag which consists of a left arrow bracket a character and a right arrow bracket </p> is a closing tag which consists of a left arrow bracket a character and a right arrow character |
| HTML Elements | An HTML Element consists of EX: <p> Hello World </p> |
| HTML Attributes | These attributes are placed in the opening tag and range from style and ids to classes. They take values, which convey more information about the element and help you do things such as styling and manipulation with JavaScript. |
| <! DOCTYPE html> | Specifies that we're using HTML5 in this code. Before the introduction of HTML5, you had to explicitly state which version of HTML you were coding in with the <!Doctype> tag. For example, HTML4.0, 3.2, and so on. But now we no longer need it. When “html” |