Adding Animation Effects In MS PowerPoint

How to Add Animation to PowerPoint on a PC Here are easy steps for using PowerPoint slide animation. The following instructions are for PowerPoint 2016, 2013, and 2010, as well as PowerPoint for Microsoft 365. Open your PowerPoint presentation and navigate to the slide to which you want to apply animations. Select the item you… Read More »

Adding a Hyperlink In MS PowerPoint

In PowerPoint, you can create a hyperlink using any text within your presentation. When clicked on, a hyperlink can directly link to a specific slide within your presentation, a saved file, a web page, another PowerPoint presentation, or a custom email.To insert a hyperlink into your presentation: Open the PowerPoint presentation. Highlight the text or… Read More »

Adding Smart Art In MS PowerPoint

To insert a SmartArt graphic: Select the slide where you want the Smart Art graphic to appear. From the Insert tab, select the Smart Art command in the Illustrations group. A dialog box will appear. Select a category on the left, choose the desired SmartArt graphic, and click OK. The Smart Art graphic will appear on the current slide. You can also click the Insert… Read More »

How to Insert Charts in PowerPoint

How to Create Charts Select the slide where you want to include the chart. Go to the Insert tab and, in the Illustrations group, click Chart. A new window will open. Select the type of chart you want and click OK. A chart will be generated, along with a new worksheet containing the data, which… Read More »

Adding a Table In MS PowerPoint

Insert a Table Click the Insert Table content placeholder.You can also insert a table by clicking the Insert tab on the ribbon and then the Table button. Specify the number of columns and rows. Click OK. Click in a cell and type in your information.Navigation shortcuts: Press the Tab key to move to the next adjacent cell. Use arrow keys to move one cell at a… Read More »

CSS

Basic CSS: CSS Introduction CSS Syntax CSS Selectors How To Add CSS CSS Comments CSS Colors CSS Backgrounds CSS Borders CSS Margins CSS Padding CSS Height, Width and Max-width CSS Box Model CSS Outline CSS Text CSS Fonts CSS Icons CSS Links CSS Lists CSS Tables CSS Layout – The display Property CSS Layout – width and max-width CSS Layout – The position Property CSS Layout – The z-index Property CSS Layout – Overflow CSS Layout – float and clear CSS Layout –… Read More »

Category: CSS

HTML Video| How to upload YouTube Videos

The easiest way to play videos in HTML, is to use YouTube. Struggling with Video Formats? Converting videos to different formats can be difficult and time-consuming. An easier solution is to let YouTube play the videos in your web page. YouTube Video Id YouTube will display an id (like tgbNymZ7vqY), when you save (or play)… Read More »

HTML Audio| How to upload in web page?

The HTML <audio> element is used to play an audio file on a web page. The HTML <audio> Element To play an audio file in HTML, use the <audio> element: Example <!DOCTYPE html> <html> <body> <audio controls>  <source src=”demo.ogg” type=”audio/ogg”>  <source src=”demo.mp3″ type=”audio/mpeg”> Your browser does not support the audio element. </audio> </body> </html> HTML Audio – How It… Read More »

How to upload Video in HTML

The HTML <video> element is used to show a video on a web page. The HTML <video> Element To show a video in HTML, use the <video> element: Example <!DOCTYPE html> <html> <body> <video width=”320″ height=”240″ controls>  <source src=”movie.mp4″ type=”video/mp4″>  <source src=”movie.ogg” type=”video/ogg”> Your browser does not support the video tag. </video> </body> </html> ​ ​ How it Works… Read More »

HTML Multimedia

Multimedia on the web is sound, music, videos, movies, and animations. What is Multimedia? Multimedia comes in many different formats. It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more. Web pages often contain multimedia elements of different types and formats. Browser Support The first… Read More »