The <script> element is used to define a client-side script (JavaScript)
The <script> element either contains scripting statements, or it points to an external script file through the src attribute. Common uses for JavaScript are image manipulation, form validation, and dynamic changes of content
The <section> element is used to define block of related content
The <section>. Section is an HTML 5 element that is similar to <article> and <div>. It is semantic HTML, which provides extended functionality
The <select> element is used to create a drop-down list
The <option> tags inside the <select> element define the available options in the list.
The <span> element is used to group inline-elements in a document. The <span> element provides no visual change by itself. The <span> element provides a way to add a hook to a part of a text or a part of a document
The <strong> element is a phrase element. It defines important text
Note: the <strong> element makes text display bold and also interfaces with adaptive technology. If the only need is to make its appearance bold, using the <b> element or CSS (font-weight) will also work
The <style> element is used to define style (embedded CSS) information for an HTML document. Inside the <style> element you specify how HTML elements should render in a browser, using CSS rules
Note: Each HTML document can contain multiple <style> elements (I did not know this before making this glossary 🙂)
This is styled text