Skip to main content

About Us / Contact Us

About Us

Mahmood Alam - Founder of www.computergap.com
Mahmood Alam - Founder of www.computergap.com

( www.computergap.com / www.forfreeeducation.blogspot.com )

I am Mahmood Alam, the founder of this blog : www.computergap.com / www.forfreeeducation.blogspot.com. I am an Instructor by profession and a part time blogger. I am not able to give much time to blogging because of my job. This blog is another place to share knowledge. Two of my students also help keep this blog updated. Thanks nice guys! Keep it up!

www.computergap.com / www.forfreeeducation.blogspot.com is a free source of perfect computer notes to decrease the computer gap and spread computer science knowledge and information technology skills. We work to spread computer literacy - free computer science education for all.


Contact Us

( www.computergap.com / www.forfreeeducation.blogspot.com )

You may contact us at softalogy@gmail.com for any queries, suggestions, complaints etc. Thanks for coming here on www.computergap.com / www.forfreeeducation.blogspot.com.

 

 

Comments

Popular posts from this blog

Microsoft Excel Formulas and Functions Fast and Easy Way -1

Introduction Using Formulas and Functions in Microsoft Excel is really a tough job for new students. This is a series of tutorials to make the use of Formulas and Functions in worksheets, easy with various real life example worksheets. مائیکروسافٹ ایکسل میں فارمولوں اور فنکشنزکا استعمال نئے طلبا کے لیے ہمیشہ سے ایک مسئلہ رہا ہے۔ میری کوشش ہے کہ فارمولا اور فنکشن کا ٹاپک پریکٹیکلی اور پکچرز کے ساتھ تفصیل سے بیان کروں۔ Let,s start. What is Microsoft Excel? Microsoft Excel is a popular application software used to manage data in the form of rows and columns and using Excel formulas and built-in Excel functions to perform various calculations on these data. Microsoft Excel is a part of Microsoft Office. We can make different types of worksheets in Excel, for example: Employee Pay Sheet Student Test Score Result Sheet with Grades Calculation Simple Electricity Bill Calculation Formula What is an Excel Formula? Excel Formula is a proper combination of operators (like +...

How To Create Yahoo E-Mail Account

Today, we are discussing the procedure for Creating a New Yahoo Free E-Mail Account. Yahoo.Com is one of the most popular and oldest Free Email Provider world wide. Yahoo provides many free features to its email account holders including Yahoo Email account. How To Create Free Yahoo Email Account in Seconds Sponsored Links We can easily create a new yahoo email account by performing the following steps in the given order. Actually first of all you have to be connected with a fast internet connection. The second step is obviously to open a web browser. you can use any web browser but I prefer Google Chrome or Mozilla Firefox because they provide the best smooth less browsing experience.  So, here are the Main steps to create a new Yahoo Free E-mail Account: Open web browser, For example Google Chrome, Mozilla Firefox or Internet Explorer. Always use latest updated versions of web browsers for your computers security from hackers and malware. I re...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...