Posts

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...

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>

Basics of Web development

Basics of Web development Web development has been a passion for many graduates who take it up as their job. Web development is interesting and it is seeing updates now and then. This article provides you the basics of web development. What is a search engine? When looking for information we type our request on a search engine.

What is Continuous Integration?

What is Continuous Integration ? Continuous integration, a part of software engineering practice is merging of all developer working copies with a shared mainline several times a day. Each check-in is then verified by an automated build, allowing teams to detect problems early. By integrating codes regularly, errors can be detected quickly and can be easily located. As a result, there is less back tracking to discover where things went wrong and fix. Continuous integration maintains a single source repository .  Developers check out code into their private  work spaces . Then it is integrated into the repository.  Continuous integration server monitors the repository and checks out changes when they occur.   Continuous integration server builds the system and runs unit and integration tests . Continuous integration server releases  deploy able  artefacts for testing Continuous integration server assigns a build label to the version of the code it ...

Database management system introduction

Database management system introduction Database is a collection of data or information. The real time example of databases is  telephone directory. It is used for storing information such as name, address, telephone number along with code numbers and providing access to information for multiple users.  Computer stores such data and provides easy access in a faster time. Computer databases are used in all kinds of organisation like business, hospitals and banking and what not. Technology advancements allow multiple users to allow data thereby making the information  centralized . Complex algebraic algorithm works together to access information easily and querying a database provides quick result. A database is a type of file system that stores data and  organizes  it in a useful and understandable structure.

Notepad++

Image
Notepad++ Notepad++ logo