Creating a New Presentation | MS PowerPoint

With PowerPoint on your PC, Mac, or mobile device: Create presentations from scratch or a template. Add text, images, art, and videos. Select a professional design with PowerPoint Designer. Add transitions, animations, and motion. Save to OneDrive, to get to your presentations from your computer, tablet, or phone. Share and work with others, wherever they… Read More »

Managing Files and Folders | MS PowerPoint

Microsoft Office integrates several desktop applications, such as Word, Excel and PowerPoint, in a bundled suite of software that allows you to store data, manage files and create folders. Saving your PowerPoint files in dedicated folders consolidates your work and makes it easier to access. You can also save other PowerPoint folders within the primary… Read More »

Using Grids and Guides In MS PowerPoint

Gridlines help give you visual cues when you’re formatting in PowerPoint. The default horizontal and vertical gridlines make a grid of one-inch squares. You can’t change that grid size. You can change the spacing between the dots that comprise each gridline by using the Spacing option. This setting allows you to adjust the precision of object alignment.… Read More »

Changing Views in MS PowerPoint

Switch to different views in PowerPoint The views in PowerPoint that you can use to edit, print, and deliver your presentation are as follows: Normal view Slide Sorter view Notes Page view Outline view (in PowerPoint 2016 for Mac) Slide Show view Presenter view Master views: Slide, Handout, and Notes You can switch between PowerPoint… Read More »

Working with HTML Head Elements

The HTML <head> element is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>. The HTML <head> Element The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. HTML metadata is data about the HTML document. Metadata is not displayed. Metadata typically define the document title, character set, styles, scripts, and other meta… Read More »

How to apply File Paths in HTML?

A file path describes the location of a file in a web site’s folder structure. File Path Examples Path Description <img src=”picture.jpg”> The “picture.jpg” file is located in the same folder as the current page <img src=”images/picture.jpg”> The “picture.jpg” file is located in the images folder in the current folder <img src=”/images/picture.jpg”> The “picture.jpg” file… Read More »

Using JavaScript in HTML

JavaScript makes HTML pages more dynamic and interactive. Example <!DOCTYPE html> <html> <body> <h1>My First JavaScript</h1> <button type=”button” onclick=”document.getElementById(‘demo’).innerHTML = Date()”>Click me to display Date and Time.</button>​ <p id=”demo”></p> </body> </html> The HTML <script> Tag The HTML <script> tag is used to define a client-side script (JavaScript). The <script> element either contains script statements, or it points to an… Read More »

What is Iframes?

An HTML iframe is used to display a web page within a web page. HTML Iframe Syntax The HTML <iframe> tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document. Syntax <iframe src=”url” title=”description“></iframe> Tip: It is a good practice to always include a title attribute for the <iframe>. This is used by screen… Read More »