Pages

Wednesday, June 10, 2026

Frist HTML Class✔

                                                                         HTML


Creating your first HTML page is the foundation of web development. All it takes is saving a simple text document with an .html extension containing basic tags like <html>, <head>, and <body>. It tells the web browser how to structure and display your content. 

*Setting Up Your Environment
*To get started, you only need two basic tools that are already on your computer:
  • Web Browser: Google Chrome, Safari, or Microsoft Edge.
  • Text Editor: Notepad (Windows) or TextEdit (Mac). For a better experience, download Visual Studio Code. [1]
Your First HTML Document
Type or paste the following code into your text editor:
html
<!DOCTYPE html>
<html>
  <head>
    <title>My First Webpage</title>
  </head>
  <body>
    <h1>Welcome to my first webpage!</h1>
    <p>This is my first paragraph written in HTML.</p>
  </body>
</html>
Use code with caution.
Understanding the Code
  • <!DOCTYPE html>: Tells the browser this is an HTML5 document.
  • <html> and </html>: The root element that wraps all the code on the page.
  • <head> and </head>: Contains background information (metadata) like the page title.
  • <body> and </body>: Holds all the visible content—like text, images, and links.
  • <h1>: Defines a main heading.
  • <p>: Defines a paragraph. 
How to View Your Page
  1. In your text editor, click File > Save As.
  2. Name your file index.html and set the format to All Files (not Text Document).
  3. Find the saved file and double-click it. It will automatically open in your web browse.

Slim Wirless Mouse

ZEBRONICS Blanc Slim Wireless Mouse with Rechargeable Battery, BT + 2.4GHz, 4 Buttons, 800/1200/1600 DPI, Silent Operation, Multicolor LED Lights


 -46% ₹429
M.R.P ₹799


M.R.P.: ₹M.R.P.:

Saturday, June 6, 2026

Ms paint short cut key

                                                                  Ms paint short cut 

Master Microsoft Paint with these essential keyboard shortcuts. They will help you speed up your editing, resizing, and viewing.

✔File Management

*Ctrl + N:- Create a new image.

*Ctrl + O:- Open an existing picture.

*Ctrl + S:- Save the picture.

*F12:- Save the picture as a new file (Save As)

.*Ctrl + P:- Print the picture.

.✔Editing & Selection

*Ctrl + Z / Y:- Undo / Redo.

*Ctrl + A:- Select all.

*Ctrl + X / C / V:- Cut, Copy, or Paste.

*Delete:- Delete selection.

✔Key Tool ShortcutsB, E, P, S, T, Z: Select Paint Bucket, Eraser, Pencil, Selection, Text, or Magnifier tools.

ACER LAPTOP ❤


 acer Nitro Lite 16,13th Gen, Intel Core i7 13620H Processor,NVIDIA GeForce RTX 3050-6 GB GDDR6,16GB/ 512 GB,16.0"/40.64 cm,165 Hz, Win 11 Home, White, 1.95 kg, NL16-71G, Backlit KB,Gaming Laptop

M.R.P.: ₹99,990.00

Frist HTML Class✔

                                                                          HTML *  Creating your first HTML page is the foundation of web de...