HTML Text Formatting

HTML Formatting Elements Formatting elements were designed to display special types of text: <b> – Bold text <strong> – Important text <i> – Italic text <em> – Emphasized text <mark> – Marked text <small> – Smaller text <del> – Deleted text <ins> – Inserted text <sub> – Subscript text <sup> – Superscript text HTML <b> and <strong> Elements The HTML <b> element defines bold text, without any… Read More »

What is html Styles

The HTML style attribute is used to add styles to an element, such as color, font, size, and more. <html><body><p>I am normal</p><p style=”color:red;”>I am red</p><p style=”color:blue;”>I am blue </p><p style=”font-size:50px;”>I am big</p></body></html> Result: I am normal I am red I am blue I am big The HTML Style Attribute Setting the style of an HTML element, can… Read More »

Insert Menu &Page layout Menu | Insert & Page layout in Microsoft Excel

Insert Tab Tables PivotTable – Button with Drop-Down. Displays the “PivotTable from table or range” dialog box. The drop-down contained the commands: PivotTable and PivotChart. The PivotTable displayed the “Create PivotTable” dialog box and the PivotChart displayed the “Create PivotTable and PivotChart” dialog box.Recommended PivotTables – Displays the “Recommended PivotTables” dialog box. This shows a list of… Read More »

HTML Paragraphs

A paragraph always starts on a new line, and is usually a block of text. HTML Paragraphs The HTML <p> element defines a paragraph. A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph. <html><body></p>This is a paragraph.</p><p>This is a paragraph.</p><p>This is a paragraph.</p></body></html> Result:… Read More »

HTML Headings

HTML headings are titles or subtitles that you want to display on a webpage. HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading. <html><body><h1>Heading 1</h1><h2>Heading 2 </h2><h3>Heading 3 </h3><h4>Heading 4 </h4><h5>Heading 5 </h5><h6>Heading 6 </h6></body></html> Result: Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading… Read More »