Posts

Showing posts from 2014

Favicons in website

Image
Adding Favicons to the Website Favicons are one of the common web page elements used in web page development. Using it in web sites are easy and common. The following article gives the insights about the element. It might help the beginners who are into web site designing.

WEBSITE TEMPLATES

                                                  WEBSITE TEMPLATES Any business is a retail shop or beauty parlour or restaurant making a remarkable web  presence is essential for its growth. Website templates can be helpful to create nice  websites to showcase its portfolio in less time and money.  Website templates are pre  developed web pages with its own pages, images, videos and other styling elements  thereby making it a complete website.

How to use fonts in our website?

Image
Planning websites alos includes choosing typography. Font is everything is about the type from the weight, size and line height and so on. The generic font-family is i) Serif ii) Sans-serif iii) Script iv) Monospace v) Fantasy Sans serif fonts are most widely used for content on web. They are readable and common to all operating systems. Serif fonts are best used in print style sheets because serif fonts can be difficult to read on monitors. It is most apt for printable documents in website though. Serif fonts have small lines at the ends on some characters. Sans-serif do not have lines at the ends of the characters. Monospace fonts can be used when spacing of the content is on the focus such as with pre-formatted text. Script fonts are best used for signatures and cursive handwriting is needed. Fantasy fonts are used for artistic texts. Font styles in CSS While defining the font-families in CSS define it properly. When defining the typeface to displa

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>

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 just built. Continuous integ

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

Python - A beginning to programming

Image
                    Python Are you new to programming? Want to try a new programming language? This article will serve your purpose.   Python is a general-purpose programming language with high level of readability.       Python logo