Loading...

HTML

HTML: Unveil the secrets of web development with Hypertext Markup Language.

HTML Example:

<!DOCTYPE html>
<html lang="en">
<head>
    <title>HTML Comment Example</title>
</head>
<body>
    <!-- h1 heading to center: This is a comment. -->
    <h1>This is heading 1</h1>
    <h2>This is heading 2</h2>

</body>
</html>


MS Excel

MS Excel: Master spreadsheet skills from basic formulas to advanced data analysis, empowering you to manage and visualize data efficiently.

Index

Excel Interface
Basic Formulas
Filtering Data
IF Function
VLOOKUP
HLOOKUP
XLOOKUP
Data Validation
Excel Tables
Charts and Graphs
PivotTables
PivotCharts
INDEX and MATCH
Dashboard Design..... ect.

Computer Basics

Computer Basics: Lay a solid foundation with the fundamentals of computers.

Index of Computer Basics

Introduction To Computer
Imput Output Devices
Central Process Unit
Secondary Storage
Software and Hardware
Control Panel
Operating System(OS)
MS-Windows 7
Part of Windows
my Computer
Type Of Computer
Cut, Copy, Paste
Notepad
Paint.........etc

MS Word

MS Word: Unlock the art of word processing with Microsoft Word, creating documents that are polished and professional.

Index

Microsoft Word
Part of the MS Word Screen
Creatinng a Document
File Operations
Editing The Text
Formattig The Text
Function, Icon, Shortcut keys
Exiting MS Word
Paragraph Options
Borders And Shading
Bullets Ad Numbering
Find, Replace & Go To
Auto correct......etc

MS Power Point

PowerPoint (PPT): Master the art of visual storytelling using Microsoft PowerPoint, creating captivating presentations that leave a lasting impact.

Index

Introduction of PPT
Gettinng ahead with PPT
Slides layouts
Editing a slide
Working with slide
Slide background
Applying themes
Powerpoint views
Working with Objects
Inset Numbers list
Create table & Charts
Slide Show & Aimations
Sound, Music & video......etc

CSS

CSS: Style your web pages like a pro with Cascading Style Sheets.

CSS Example:

body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    text-align: center;
}

h1 {
    color: #4285f4; /* Google Blue */
}

p {
    color: #34a853; /* Google Green */
}


JavaScript

Javascript: Unleash the power of scripting to create interactive web content.

JavaScript Example:

<p id="message">Click the button!</p>
  <button id="clickButton">Click Me</button>
  
  
    // JavaScript code
 var messageElement = document.getElementById("message");
 var clickButton = document.getElementById("clickButton");
    
    function updateMessage() {
      messageElement.textContent = "Button was clicked!";
    }
    
    clickButton.addEventListener("click", updateMessage);

Python

Python: Embrace the versatile and beginner-friendly programming language.

Python Example:

 print("Hello, World!")
	def factorial(n):
    if n == 0 or n == 1:
        return 1
    else:
        return n * factorial(n - 1)

num = int(input("Enter a positive integer: "))

if num < 0:
    print("Factorial is not defined for negative numbers.")
else:
    result = factorial(num)
    print(f"Factorial of {num} is {result}.")

Java

Java: Venture into the world of Java programming for robust applications.

Java Example:

public class SumCalculator {
  public static void main(String[] args) {
        // Declare and initialize two numbers
        int num1 = 5;
        int num2 = 10;
        
        // Calculate the sum of the two numbers
        int sum = num1 + num2;
        
        // Display the result
        System.out.println("The sum of " + num1 + " and " + num2 + " is: " + sum);
    }
}