Skip to main content

Posts

Recent Posts

Latest News

● Posts on CSS and SEO coming soon ...●

Basics of Web

 How Website Works?:  When a client search a particular website on internet, his request is sends to DNS for obtaining IP Address. This IP Address is send to the client-server. Clients server requests the web-server for sending files to the client in terms of HTML, CSS and Javascript to the location of clients IP Address. Finally client views content in his browser which he had requested.  Let us now define some common terms in Web Development which are required to understand before moving forward in web development. Web page is a document or information resource on www (world wide web) and can be accessed through web browser and displayed on a monitor. Web publishing describes the software and methodologies to design web pages and website. Web Server is a Computer which stores websites or A Web server is an application or a computer that sends webpages over the internet using the HTTP protocol. The functionality of website is managed by web server. Web Browser is a software program
Recent posts

Introduction to SEO

  Introduction to SEO What is a SEO and why it is used? SEO stands for search engine optimization and it is used for purpose of ranking a website in search engine results.  Search Engine is a software program to search anything on internet. Eg. Google, Bing, Yahoo, etc. SEO also make website more understandable for search index bots for indexing purposes.  If a website is higher in rank in search result then more users will visit this website, and if it has low rank in search results then less users will visit this website. This is because search engine rank  website  according to  time spent and no. Of users visited website. Depending on this websites are ranked in search engines.

Introduction to C

 What is C in programming and why it is used? C is a general purpose programming language developed by Dennis Ritchie at AT & T's Bells laboratory in 1972.  C language is from one of the popular languages. It is simple and easy to use and it is portable. It is considered  to be a middle level language and it is close to machine level language due to which it executes instructions faster .  With the help of C language we can solve complicated mathematical equation. C language can be good base to learn other programming languages like C++, C#, Java.  Importance of c programming language  and where it is used?           Major parts of popular operating systems like windows, Linux, Unix and  Android are written in C. It is used for writing Device Driver programs ( program which operates or control device ).           In a professional games , when user gives instructions like firing, aiming towards objects, computer has to respond this instructions faster. If computer takes tim

Introduction to programming

What is a programming? :-  Programming is a way to communicate with computer by giving set of instructions to the computer. Giving set of instructions to the computer is known as program. Those who gives instructions to the computers are known as programmers. Computer cannot understand language as we use to communicate with each other. Computer can understand only binary language(0 and 1). Binary code is very difficult to understand since it is only in form of 0 and 1. Computer is not smart enough to do task on its own, we need to provide instructions to perform task. We use programming languages to give those instructions to the computer. Still we cannot give directly instructions to the computer because writing instructions in 0 and 1 is a difficult task. So here we need to convert our instructions to binary language by using translators which converts set of instructions in machine readable form.  Programming languages are of two types 1. Low Level  Languages :  Low level languag

Font property in CSS

Using font properties in CSS : Font family : this property defines a list of font family names or generic names. List of font family or generic family(font families with similar look ) names helps if one font is not displayed, the next font will be displayed depends on availability of font in user system.  Eg. P {font family : ‘Impact' }  This font displayed in my system but in other system it is displayed as default value, so if font is not available in system so browser will  be display default font family. If font has more than one word then use quotation mark('     '). Font style : this property define how to style  the font. It has values italic, oblique(text is slanted to specific angle similar to italic), normal(default). Font weight : this property increase weight of font or thickness the text. It has values normal (default), lighter, bold, bolder ( this specifies weight of font relative to default or parent value.).  We can also specify by numbers between (1-1000)