Skip to main content

Posts

Showing posts from October, 2016

Lexicon of C programming language

This article introduces you to various components of C- language statements . C - Tokens are the essential part of  a C-compiler . A token is an individual entity of a C - program.C-statements having keywords , Identifiers , Constants , Strings , Operators and special symbols are called C-tokens. CHARACTER SET in C language includes alphabets (used to write C -statements and character constans) ,  digits   (used to assign numeric data) , special symbols (used for special purposes such as to create relational statements and assignment statements). There are 30 spec ial symbols like <,>,<=,>=,== and many others and at last are white spaces . KEYWORDS and IDENTIFIERS   Every word in C - language is a keyword or an identifier. Keywords cannot be used as a variable name , these are reserved words. For example: auto , break , case , else , struct  etc. While Identifiers refer to name of user-defined variables , arrays , functions (we will discuss about arrays

HTML Tag.

HTML<html> Tag The <html> tag is the container for all other HTML elements (except for the <!DOCTYPE> tag). It mainly comprises of document header which is represented by <head>...</head> and document body which is represented by <body>...</body> tags. This tag represents root of an HTML document. EXAMPLE: <html> ..... </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

New Website Ideas to start a great Business online and earn money.

Internet is an all time business today. We know there is plenty of people with entrepreneurial passion waiting for the idea to finally start something meaningful. We also know there is a lot of people not satisfied with product options they have at the moment. So why not to try bring these two together? today in this post i came up with some the new unique ideas that can be implemented Today for a great start up. Here is list : 1. Help choosing career / work / occupation I think most of people have real problem while choosing career or life path. The site would help to make decision. In a nutshell - idea is that there will be two types of users - ones who seeks for advice and those who will help to make decision. In order to get career advice you will have to choose three activities which you love to do. Based on your chosen activities others will offer what possible career path you could choose. 2. Startup failures You can learn a lot from failures of others. W

Disadvantages of HTML?

Disadvantage of HTML? It cannot produce dynamic output alone, since it is a static language. Security features offered by HTML are limited. Sometimes, the structuring of HTML documents is hard to grasp.  Need to write lot of code for making simple webpage. If we need to write long code for making a webpage then it produces some complexity. Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Advantages of HTML?

Advantages of html Easy to use Loose syntax (although, being too flexible will not comply with standards) Supported on almost every browser. Widely used; established on almost every website. Very similar to XML syntax, which is increasingly used for data storage Free - You need not buy any software Easy to learn & code even for novice programmers.  Next --: Disadvantages of HTML? Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

History of HTML?

HISTORY OF HTML? In the beginning… In 1989, Tim Berners-Lee , working at the European particle physics institute known as CERN (Centre European pour la Recherche Nucleaire) , proposed a system to allow scientists to share papers with other using electronic networking methods. His idea became what is called the World-Wide Web . Since these documents were to be shared, some common method coding them needed to be developed. Tim Berners-Lee suggested that it be based on the already existing SGML. Here are a few quotes from a 1990 CERN memo that Berners-Lee wrote: HyperText is a way to link and access information of various kinds as a web of nodes in which the user can browse at will. It provides a single user-interface to large classes of information (reports, notes, data-bases, computer documentation and on-line help). We propose a simple scheme incorporating servers already available at CERN… A program which provides acc

What is HTML?

     What is HTML? HTML is a markup language for describing web documents (web pages). A formatting system for displaying text, graphics, and audio retrieved over the Internet on a computer monitor. Each retrieval unit is known as a Web page (from World Wide Web), and such pages frequently contain hypertext links that allow related pages to be retrieved. HTML stands for Hyper Text Markup Language. HTML adds "markup" to Standard English text. "Hyper Text" refers to links — hyperlinks — that connect Web pages to one another. A markup language is a set of markup tags. HTML documents are described by HTML tags. Each HTML tag describes different document content. HTML is not case sensitive. Next - History of HTML? Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Describing ordered and unordered lists

<!DOCTYPE html> <html> <body>     <p>Unordered List</p>   <ul>     <li>lenovo</li>     <li>Oppo</li>     <li>Microsoft</li>   </ul>     <p>Ordered List</p>   <ol type= "a">     <li>lenovo</li>     <li>Oppo</li>     <li>Microsoft</li>   </ol>     </body> </html>      Unordered list - Item Markers • disk • square • circle • none The  list-style-type property is used to describe the type of list item Markers. Syntax : <ul style =" list-style-type :none ">                         -------------    Ordered list The type attribute of <ol> tag is used to select type of list item marker.

Introduction to Programming language C

Dennis Ritchie ( US) designed C programming language in 1972 at "AT & T's Bell laboratories". C has been often termed as " M iddle Leve l Language " . Programs written in C are very efficient and fast. C is a general purpose structured powerful language. Features at a Glance: • C is highly portable language .This means that a C program written for one system can be run on another system with little or no modifications. • C's another striking feature is its ability to extend itself. We can add our own functions to the C library . • Writing a C program with user defined makes program more simple and easy to understand . • C - language has more data types ( except boolean operators ), operators and can take more variables than other languages. • C - language is a structured programming language that is  it has different modules and blocks . • C - language is used to develop graphics software . 2D and 3D graphics are also implemented using C.

Adding Tables in HTML5 and CSS3.

Our second post is about adding TABLES in html. Here is the implementation of the logic. <html><head> <title>Table</title></head> <body> <p align="center">Table will be centered aligned</p> <div align="center"> <table width="200" border="1" title="Table"> <tr> <th>Column A </th> <th>Column B </th> </tr> <tr> <td><div align="center">data1</div></td> <td><div align="center">data2</div></td> </tr> <tr> <td><div align="center">data3</div></td> <td><div align="center">data4</div></td> </tr> <tr> <td><div align="center">data5</div></td> <td><div align="center">data6</div></td> </tr>

Adding Radio Button in HTML5 and CSS3

This post is about adding Radio button in html. <!DOCTYPE html> <html>  <head>   <title> HTML input type radio</title> </head> <body>   <form>         <input type="radio" name="gender" value="male"> Male<br>         <input type="radio" name="gender" value="female"> Female<br> <br>         <input type="submit" value="Submit">   </form> </body> </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Adding Progress Tag in Html5 and CSS3.

This post is about adding Progress Tag in html. The HTML progress tag specifies a completion progress of a task. It is displayed as a progress bar. The value of progressbar can be manipulated by using JavaScript. Here is the implementation of the logic. <!DOCTYPE html> <html> <head> <title>HTML Progress Tag</title> <script> var pBar = document.getElementById('p'); var updateProgress = function(value) { pBar.value = value; pBar.getElementsByTagName('span')[0].innerHTML = Math.floor((100 / 70) * value); } </script> </head> <body> <progress id='p' max='70'> <span>0</span>%</progress> </body> </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Adding Ordered and Unordered list in HTML5 and CSS3

This post is about adding Orderd and Unordered list in html. Here is the implementation of the logic. <html> <body> <p>Unordered List</p> <ul> <li>Mobile</li> <li>Phablet</li> <li>Tablet</li> </ul> <p>Ordered List</p> <ol> <li>Mobile</li> <li>Phablet</li> <li>Tablet</li> </ol> </body> </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Adding Marquee tag in HTML5 and CSS3.

This post is about adding Marquee Tag in html. The HTML marquee tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings. <!DOCTYPE html> <html> <head>   <title> Marquee Tag </title> </head> <body>   <marquee bgcolor="#eeeeee" direction="right" scrollamount="10" width="100%" height="20">       GimiBits!   </marquee><br>   <p>   <marquee bgcolor="skyblue" direction="down" scrollamount="5" width="49%" height="500">     <center>C</center>     <center>C++</center>     <center>Java</center>   </marquee>   <marquee bgcolor="skyblue" direction="up" scrollamount="5" width="49%" height="500">     <cen

Adding Field tag in HTML5 and CSS3.

This post is about adding Field Tag in html. Here is the implementation of the logic. <html> <head> <title>HTML fieldset Tag</title> </head> <body> <form> <fieldset> <legend>Details</legend> Student Name: <input type="text"><br/></br> MCA Subjects:<input type="text"><br/></br> <input type="submit" value="Submit"> </fieldset> </form> </body> </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF

Adding Dialogue Boxes IN HTML5 AND CSS3.

This post is about adding Dialogue Boxes in html. Here is the implementation of the logic. <!DOCTYPE html> <html> <head> <title>HTML dialog Tag</title> </head> <body> <!-- Simple pop-up dialog box, containing a form --> <dialog id="dialog"> <form method="dialog"> <h3> Hello</h3> <menu> <button id="close" type="reset">Close</button> </menu> </form> </dialog> <menu> <button id="click">Click Me</button> </menu> <script> (function() { var clickButton = document.getElementById('click'); var closeButton = document.getElementById('close'); var Dialog = document.getElementById('dialog'); // Update button opens a modal dialog clickButton.addEventListener('click', function() { Dialog.showModal(); }); // Form close button closes the dialog

Dropdown Boxes in html

This post is about creating Dropdown boxes in html. <html> <head> <title> DropDown</title> <style media="screen" type="text/css"> .clearfix:after {     display:block;     clear:both; } /*----- Menu Outline -----*/ .menu a {     transition:all linear 0.15s;     color:#919191; } .menu .arrow {     font-size:11px;     line-height:0%; } /*----- Top Level -----*/ .menu > ul > li {     float:left;     display:inline-block;     position:relative;     font-size:19px; } .menu > ul > li > a {     padding:10px 40px;     display:inline-block;     text-shadow:0px 1px 0px rgba(0,0,0,0.4); } .menu > ul > li:hover > a, .menu > ul > .current-item > a {     background:#2e2728; } /*----- Bottom Level -----*/ .menu li:hover .sub-menu {     z-index:1;     opacity:1; } .sub-menu {     width:160%;     padding:5px 0px;     z-index:-1;     opacity:0;     transition:opacit

Adding Combo Boxes in html.

Our second post is about adding C ombo Boxes in html. Here is the implementation of the logic. <!DOCTYPE html> <html>  <head>     <title>Input Field</Title>   </head>    <body>        <form>          Year:           <select name ="Year">              <option>value="x">First</option>              <option>value="y">Second</option>              <option>value="z">Third</option>           </select> </br> </br>           <input type="Submit" value="Submit">        </form>  </body> </html> Post any problem if encountered in the comments . Thanks for visiting GIMIBITS . Please share this post and like us on Facebook. HITESH BHATIA EDITOR IN CHIEF