| A | B |
| Webmaster | person who either creates or manages a website content |
| Intranet | private network that is contained within a company |
| Browsers | Google Chrome, Internet Explorer, Firefox, and Safari are examples of web browsers. |
| HTML validator | quality assurance program used to check Hypertext Markup Language ( HTML ) markup elements for syntax errors |
| External CSS | CSS code must reside in a separate file than the HTML file that uses it. |
| stakeholder | person with an interest or concern in a Web site (client) |
| copyright | Grants the creator of an original work exclusive rights to its use and distribution, usually for a limited time, with the intention of enabling the creator of intellectual wealth (e.g. the photographer of a photograph or the author of a book) to receive compensation |
| trademark | recognizable sign, design or expression which identifies products or services of a particular source from those of others. |
| HTML | Stands for Hypertext Markup Language; HTML is the language of the web. HTML is a set of tags that are used to define the content, layout and the formatting of the web document. Web browsers use the HTML tags to define how to display the text. |
| tags | Code to identify the different parts of a document so that a web browser will know how to display it. |
| attributes | Provides additional information about HTML elements. (ex: name=”value”) |
| web server | computer that delivers services or information to other computers. In web terms: A server that delivers web content to web browsers. |
| web site | collection of related web pages belonging to a company or an individual. |
| web page | document (normally an HTML file) designed to be distributed over the web. |
| URL | Uniform Resource Locator; A web address. The standard way to address web documents on the internet. |
| WWW | global network of computers using the internet to exchange web documents. |
| W3C | World Wide Web Consortium; The organization responsible for managing standards for the WWW. |
| HTTP | Hyper Text Transfer Protocol; The standard set of rules for sending text files across the Internet. It requires an HTTP client program at one end, and an HTTP server at the other end. |
| web browser | software program used to display web pages. |
| <article> | self-contained content that could be separated from other page content, but be complete. |
| <aside> | section of a page, such as a sidebar. |
| <figure> | self-contained media content, such as a photo, diagram, etc. |
| <figcaption> | caption or legend associated with a <figure> element. |
| <footer> | footer of a section of content, containing author information, copyright, navigation links, etc. |
| <nav> | section of a page containing navigation links to other pages on the same website or other sections of the current page. |
| <title> tag | required in all HTML documents and defines title in browser toolbar. |
| <body> tag | defines document's body, contains all contents of HTML document. |
| deprecated feature | HTML feature that is being phased out. |
| <!DOCTYPE html> | HTML 5 DOCTYPE |
| element | a distinct object in the document, like a paragraph, heading, or page title |
| tag | marks each element in a document; html code that creates an object/element |
| two-sided tag | tag that contains document content |
| one-sided tag/empty element | tag that contains no content; opens and closes in same tag |
| head section | contains information about the html document; not displayed in the Web page; Web browsers use the information in the <head> section |
| body section | contains all of the content to be displayed in the Web page; placed after the </head> tag |
| nesting | placing one element within another |
| inline styles | style that is written into an individual tag to change the appearance of that tag |
| ordered list | items appear in a sequential order |
| unordered list | items do not need to appear in any special order |
| nested list | a list within a list |
| <blockquote> tag | identifies a long quotation; indented on both left and right margins; block-level element |
| <div> tag | identifies a generic block-level element |
| deprecated | obsolete; no longer in use; out of date |
| 216 | How many colors are specified in the Web-safe color palette |
| <td> | XHTML tag is used to contain content in a table cell |
| 0, 0, 255 | RGB code for the color blue |
| <th> | element aligns content both horizontally and vertically to the center of the table cell by default |
| infringement | Violating a copyright or trademark is an example of what |