Posts

Showing posts from November, 2014

Web Hosting

Image
                                                             Web hosting Web hosting can be explained in lay words as  the process of providing storage space and access for websites. Web hosting

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>,<dl>                      iii.   <h1>...<h6>                     iv.    <p>                      v.    <form>                     vi.    <li>,<dt>,<dd>                    vii.    <table>  

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>