Posts

Essential HTML Tags

1. Basic Structure Tags: <!DOCTYPE html> : Declares the document type and version of HTML. <html> : Root element that contains all the content on the page. <head> : Contains meta-information like the title, character set, and links to external files. <title> : Sets the title of the page (displayed on the browser tab). <body> : Contains the visible content of the webpage. 2. Text Formatting Tags: <h1> , <h2> , <h3> , <h4> , <h5> , <h6> : Headings (from largest <h1> to smallest <h6> ). <p> : Paragraph. <br> : Line break. <b> : Bold text. <i> : Italic text. <u> : Underlined text. <strong> : Defines important text (bold by default). <em> : Defines emphasized text (italic by default). 3. Link and Image Tags: <a> : Defines a hyperlink. ( href attribute for the link destination). <img> : Embeds an image. ( src attribute for image location, alt attribute for t...

Essential Shortcut Keys Windows OS and Office Software

Windows Shortcuts: Ctrl + C : Copy Ctrl + X : Cut Ctrl + V : Paste Ctrl + Z : Undo Ctrl + Y : Redo Alt + Tab : Switch between open apps Windows + D : Show desktop Windows + E : Open File Explorer Windows + L : Lock the computer Windows + Arrow (Left/Right) : Snap window to the left/right half of the screen Ctrl + Shift + Esc : Open Task Manager Microsoft Word Shortcuts: Ctrl + N : New document Ctrl + O : Open document Ctrl + S : Save document Ctrl + P : Print document Ctrl + B : Bold text Ctrl + I : Italicize text Ctrl + U : Underline text Ctrl + A : Select all text Ctrl + F : Find text Ctrl + H : Replace text Alt + Ctrl + S : Split screen view Microsoft Excel Shortcuts: Ctrl + N : New workbook Ctrl + O : Open workbook Ctrl + S : Save workbook Ctrl + C : Copy cells Ctrl + X : Cut cells Ctrl + V : Paste cells Ctrl + Arrow (Up/Down/Left/Right) : Jump to the edge of data Ctrl + Shift + L : Toggle filters F2 : Edit selected cell **Ctrl + Shift + "+": Insert new row/column Microso...

class 7 Transportation

Welcome to Science Quiz Welcome to Science Quiz Click the button below to start the quiz. Start Quiz Time Left: 10:00 Quiz Over! Play Again Warning: Please stay on this page! If you switch tabs or apps, the quiz will stop! Powered by Blogger Style Quiz

Class 7 Chapter: Light quiz

Welcome to Science Quiz Welcome to Science Quiz Click the button below to start the quiz. Start Quiz Time Left: 10:00 Quiz Over! Play Again Powered by Blogger Style Quiz

Weather and Climate Class 7 Quiz

Welcome to Science Quiz Welcome to Science Quiz Click the button below to start the quiz. Start Quiz Time Left: 10:00 Quiz Over! Play Again Powered by Blogger Style Quiz

quiz

Image
Computer Basics Quiz Welcome to the Computer Basics Quiz! Click the button below to start the quiz. You have 2 minutes to complete it. Start Quiz Basix by harshitreja Time Left: 2:00 Quiz Over! Play Again Show Answers Basix by harshitreja

7 LAB 2

Activity 4  <html> <head> </head> <body> <table bgcolor=black width=700> <tr bgcolor=yellow> <th> Photo </th> <th> Name </th> <th> Address </th> </tr> <tr bgcolor=white align=center> <td > </td> <td> Sanjay</td> <td>Delhi </td> </tr> <tr bgcolor=white align=center> <td > </td>  <td> Divya </td> <td>Meerut</td> </tr> </table> </body> </html> PROJECT 2 (PAGE NO. 10) <!DOCTYPE html> <html> <head> <title>Some Popular Monuments in India</title> </head> <body bgcolor="RED" text="white"> <h1>Some Popular Monuments in India</h1> <p>   Agra   <ol type="a" style="list-style-type: none;">      <li>&ndash;Taj Mahal</li>   </ol> </p> <p>   Delhi   <ol type="a"...