Posts

Windows 10 Taskbar Information

The Windows 10 Taskbar is a versatile feature that helps you manage and access applications, notifications, and settings with ease. Here's a breakdown: Start Button : Located on the left side, it opens the Start menu for accessing apps, settings, and system features. Search Bar : Lets you search for files, apps, and even online information directly from the desktop. Pinned Apps : You can pin frequently used apps to the Taskbar for quick access. Right-click on an app and select "Pin to Taskbar." Running Apps : Displays icons of currently running applications, making it easy to switch between tasks. Notification Area (System Tray) : Located on the right side, it shows system icons like battery, volume, network, and notifications. You can click the arrow for hidden icons. Date and Time : Displays the clock and calendar, and lets you quickly view upcoming events when integrated with your calendar. Task View : The button next to the search bar allows you to see al...

Mouse Right click on Desktop

Windows Desktop Right Click When you right-click on your desktop in Windows 10, a context menu appears with various options. Here's what you'll typically see: View - Customize how icons are displayed on the desktop (e.g., large, medium, small) and arrange or align them automatically. Sort by - Organize desktop icons by name, size, item type, or date modified. Refresh - Reloads the desktop to reflect recent changes, like new files or shortcuts. New - Create new folders, shortcuts, or files directly on the desktop. Display settings - Adjust screen resolution, scaling, and display orientation. Personalize - Access settings for themes, background images, and taskbar color. जब आप अपने डेस्कटॉप पर राइट-क्लिक करते हैं, तो एक संदर्भ मेनू (context menu) खुलता है जिसमें कई विकल्प होते हैं। यह विकल्प सामान्यतः होते हैं: View (दृश्य) - आइकनों का आकार (बड़ा, मध्यम, छोटा) बदलना और उन्हें स्वचालित रूप से व्यवस्थित करना। Sort by (क्रम अनुसार छांटे) - नाम, आकार, प्रकार, या सं...

HTML forms

1. Basic Login Form <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Login Form </ title > < style > form { width : 300px ; margin : auto; padding : 20px ; border : 1px solid #ccc ; border-radius : 10px ; font-family : Arial, sans-serif; } input [type= "text" ] , input [type= "password" ] { width : 100% ; padding : 10px ; margin : 10px 0 ; border : 1px solid #ccc ; border-radius : 5px ; } button { width : 100% ; padding : 10px ; background-color : blue; color : white; border : none; border-radius :...

How to make folder on Desktop

 Here are the steps to create a folder on your desktop in English: Go to the desktop : Click on your computer's screen anywhere on the desktop. Right-click : Press the right mouse button. Select "New" : Hover your mouse over the "New" option in the menu. Click "Folder" : Choose "Folder" from the options. Name the folder : A new folder will appear. Type your desired name using the keyboard and press Enter. Your folder is now ready! Do let me know if you'd like help with anything else. 😊 डेस्कटॉप पर फ़ोल्डर बनाने के लिए ये आसान चरण अपनाएँ: डेस्कटॉप पर जाएँ : अपने कंप्यूटर के स्क्रीन पर, डेस्कटॉप पर कहीं खाली जगह पर क्लिक करें। राइट-क्लिक करें : माउस का दायाँ बटन (Right-Click) दबाएँ। "New" पर जाएँ : मेनू में "New" विकल्प पर माउस को ले जाएँ। "Folder" चुनें : "New" के अंदर से "Folder" पर क्लिक करें। नाम लिखें : नया फ़ोल्डर दिखाई देगा। इसे नाम देने के लिए कीबोर्ड से अपनी पसंद का ना...

HTML Practice Assignment Marqee

  1. Basic Marquee <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Basic Marquee </ title > </ head > < body > < h2 > Welcome to My Website </ h2 > < marquee > Welcome! Stay tuned for updates. </ marquee > </ body > </ html > 2. Marquee with a Table <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Marquee with Table </ title > </ head > < body > < marquee > Latest Scores: Team A - 2, Team B - 3 </ marquee > < table border = "1" > < tr ...

HTML Assignment Practical Practice List

  1. Basic Unordered List <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Basic Unordered List </ title > < style > ul { list-style-type : circle; font-family : Arial, sans-serif; } </ style > </ head > < body > < h2 > Fruits </ h2 > < ul > < li > Apple </ li > < li > Banana </ li > < li > Cherry </ li > </ ul > </ body > </ html > 2. Ordered List with Custom Numbers <!DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scal...