Posts

Showing posts from November, 2014

Web Hosting Explained: A Complete Guide to Choosing the Right Hosting Method

Image
Web Hosting Web hosting can be explained in lay words as the process of providing storage space and access for websites. Web hosting The website we have designed has to be connected to World Wide Web in order to make it available for all internet users and a hosting company does that. Hosting company has powerful servers and when we send our files to them they upload it on the server. Server is a powerful computer that stores the files of many users. Hosting company will provide two things. One is bandwidth and the other is disk space for the files. There are many ways to website hosting can be carried out. It is important to understand the methods and know our needs before opting. Internet Service Provider is one of the methods of web hosting. ISPs include a small amount of free web space to create web pages which are meant to have low amount of traffic. Free Web hosting can be better o...

Display property in CSS

Image
How to display elements in CSS Each and every element we write in HTML is displayed in the web page and takes its space. Each element has its own display property but we can control the same using CSS rules. Block level elements Elements like paragraph <p>, div <div> are block elements having default display value as block. Block elements takes up horizontal space as much as possible. They always fall in a new line stacked one below the other. They can contain block or inline elements and can be even wrapped inside an inline element. You can specify width and height to block level elements. Common elements listed below are block level elements.                        i.   <div>                       ii.   <ul>,<ol...

How to arrange menu horizontally in a webpage using html

To arrange menus in the webpage horizontally, the following code can be used: HTML CODE: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> LISTS HORIZONTALLY</title> <link rel="stylesheet" href="styling.css" type="text/css"> </head>