Monthly Archives: June 2022

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 »

HTML Attributes

HTML attributes provide additional information about HTML elements. HTML Attributes All HTML elements can have attributes Attributes provide additional information about elements Attributes are always specified in the start tag Attributes usually come in name/value pairs like: name=”value” The href Attribute The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to: Example <html><body><h2> The href… Read More »

HTML Basic

In this chapter we will show some basic HTML examples. Don’t worry if we use tags you have not learned about yet. HTML Documents All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>. <!DOCTYPE html><html><body><h1>My First Heading</h1><p>My… Read More »