Structural Markup : This is markup (in any language) that gives information about the structure of a document.
HTML has six “levels” of headings:
<h1>This is a Main Heading</h1>
<h2>This is a Level 2 Heading</h2>
<h3>This is a Level 3 Heading</h3>
<h4>This is a Level 4 Heading</h4>
<h5>This is a Level 5 Heading</h5>
<h6>This is a Level 6 Heading</h6>
By default, a browser will show each paragraph on a new line with some space between it and any subsequent paragraphs.
<p>Text is easier to understand when it is split up
into units of text. For example, a book may have
chapters. Chapters can have subheadings. Under
each heading there will be one or more
paragraphs.</p>
Bold <b>
Italic <i>
Superscript & Subscript <sup> & <sub>
Line Breaks & Horizontal Rules <br /> & <hr />
CSS allows you to create rules that specify how the content of an element should appear.
A CSS rule contains two parts: a selector and a declaration.
Using External CSS
Using Internal CSS
Using inline CSS
selectors are patterns used to select the element(s) you want to style.

A script is a sequence of characters written according to the syntax of a scripting language.
write comments to explain what your code does.
// Display the appropriate greeti ng based on the current time
JavaScript variables are containers for storing data values.
we can use:
var , Before 2015
let
const
Data types basically specify what kind of data can be stored and manipulated within a program.

A conditional statement is a statement that can be written in the form “If P then Q,” where P and Q are sentences.
a logical operation is a special symbol or word that connects two or more phrases of information.
