| A | B |
| Semantic Elements | A semantic element clearly describes its meaning to both the browser and the developer. Examples of non-semantic elements: <div> and <span> - Tells nothing about its content. Examples of semantic elements: <form>, <table>, and <article> - Clearly defines its content. |
| Media Queries | Media queries are useful when you want to modify your site or app depending on a device's general type (such as print vs. screen) or specific characteristics and parameters (such as screen resolution or browser viewport width). Media queries are used for the following: To conditionally apply styles with the CSS @media and @import at-rules. To target specific media for the <style>, <link>, <source>, and other HTML elements with the media= attribute. |
| Span Tag | The <span> tag is an inline container used to mark up a part of a text, or a part of a document. The <span> tag is easily styled by CSS or manipulated with JavaScript using the class or id attribute. Example <p>My mother has <span style="color:blue">blue</span> eyes.</p> |
| GIT | is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. |
| Cloaking | Site cloaking enables you to exclude folders and file types from operations such as Get or Put. You can cloak individual folders, but not individual files. To cloak files, you must select a file type and Adobe Dreamweaver cloaks all files of that type. Adobe Dreamweaver remembers your settings for each site so that you don't have to make selections each time you work on that site. |
| colspan tage | An HTML table with a table cell that spans two columns: |
| GET Method | GET is used to request data from a specified resource. |
| Post Method | POST is used to send data to a server to create/update a resource. |