Posts

Showing posts from April, 2020

How to Calibrate Your Display/Monitor on Windows 10

Image
How to Calibrate Your Display/Monitor on Windows 10 By Swapnil Ganvir Whether you have just installed a new monitor or hooking up your old one, calibration plays an important role in optimizing the working of your monitor so you don’t miss out on the details or color accuracy that you paid for. Although the difference might not be phenomenal, it is more than noticeable if you’re someone who focuses on graphic-intensive tasks.  Windows 10 features  an in-built display calibration wizard that guides you through assessing the metrics of your monitor's settings such as color, brightness, contrast, and more. Here’s how you can calibrate a monitor or display on Windows 10 Open the  Start  menu and type calibrate display in the search bar. Click on the  Calibrate display color  option to proceed. You will be welcomed by a Display Color Calibration window, simply click on  Next  after reading the introductory info. The first step is ...

Tips about Truecaller

Image
Why You Should Consider Uninstalling Your Truecaller App.  By Swapnil Ganvir Without a doubt, the Truecaller app has been very useful to smartphone users since it was introduced in 2009. It is a multipurpose call management app (available on Android & IOS) that helps you identify unknown callers. In Nigeria, for example, this app has been really helpful in thwarting fraudsters, spam calls, and unsolicited calls from telecom service providers. Asides that, you get other great features; it lets you record calls manually and automatically, and helps you backup your contacts and call list. How Does Truecaller work? When you sign up on Truecaller, all your information (Name, phone book contacts, Operating system, device ID, etc), as stated in the privacy policy on its website are immediately uploaded to the Truecaller server. Everyone who installs the app surrenders all the contacts in their phone book, and all these contacts are uploaded to Truecaller’s server...

Learn HTML basics introduction

Image

HTML Basic Examples

HTML  Basic Examples Don't worry if these examples use tags you have not learned. You will learn about them in the next chapters. HTML Documents All HTML documents must start with a document type declaration:  <!DOCTYPE html> . The HTML document itself begins with  <html>  and ends with  </html> . The visible part of the HTML document is between  <body>  and  </body> . Example < !DOCTYPE  html > < html > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Try it Yourself » HTML Headings HTML headings are defined with the  <h1>  to  <h6>  tags. <h1>  defines the most important heading.  <h6>  defines the least important heading:  Example < h1 > This is heading 1 < /h1 > < h2 > This is heading 2 < /h2 ...

Different Types of HTML Editors

Image
HTML  Editors Write HTML Using Notepad or Text Edit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe using a simple text editor is a good way to learn HTML. Follow the steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) Windows 8, Windows 10 or later: Open the  Start Screen  (the window symbol at the bottom left on your screen). Type  Notepad . Windows 7 or earlier: Open  Start  >  Programs >   Accessories >   Notepad Step 1: Open TextEdit (Mac) Open  Finder > Applications > TextEdit Also change some preferences to get the application to save files correctly.  In  Preferences > Format >  choose  "Plain Text" Then under "Open and Save", check the box that says "Display HTML files as HTML cod...