Author: Awais Farooq
-
Tag Reference
HTML tags are similar to keywords, which specify how a web browser will format and display content. A web browser can differentiate between simple content and HTML content with the use of tags. The major components which are essential for the HTML tag are the opening tag and the closing tag. However, some tags in…
-
Color Code Builder
Sometimes we need to decorate our HTML pages using different colors. HTML provides a wide range of attributes that can be used to set background color, font color and so on. To use colours in your HTML pages, we are required to choose valid color codes. The following tool will help us to generate valid…
-
Validation
An HTML validator is a tool that parses each line of code in order to find syntax errors and to check whether the HTML and CSS codes comply with the latest standards set by the World Wide Consortium (W3C). The most frequently used validators are as follows − The W3C Markup Validator The W3C Markup Validator checks the markup…
-
Modernizr
Modernizr is a small JavaScript Library that detects whether a particular feature of web technologies is available or not in the user’s browser. It provides an easy way to detect any new feature so that we can take corresponding action based on the browser’s capabilities. For example, if a browser does not support a video feature…
-
QR Code
A QR is an abbreviation, stands for Quick Response code which is a form of 2-D matrix barcode. If we take a closer look at a QR Code closely, we will clearly see that it consists of black squares on a white background. It can store various types of data including phone numbers, URLs of…
-
Velocity Draw
The HTML velocity draw is a tool used for creating and manipulating animations on a web page. It has some set of properties like opacity, size and position that control the animation. In the below velocity draw tool, we can draw a variety of visual graphics by changing the position of cursor, opacity and density.…
-
Web Slide Desk
A slide is a single page of a presentation. Collectively, a group of slides may be known as a slide deck. Example Let’s look at the following example, where we are going to create a HTML web slide desk When we run the above code, it will generate an output consisting of the button along…
-
Video Player
HTML Local Video player HTML features, include native video support without the need for Flash. Below player works based HTML, CSS and Java Script. You can drag and drop your local Video files into the container. Example Let’s look at the following example, where we are going to allow the user to upload the local…
-
Audio Player
HTML Local Audio Player with visualizer HTML features, include native audio and video support without the need for Flash.Below code works based HTML,CSS and Java Script.You can drag and drop your local Mp3 files into the container. Example Let’s look at the following example, where we are going to create a local audio visualizerHTML File…
-
Web RTC
Web RTC introduced by World Wide Web Consortium (W3C) that supports browser-to-browser applications for voice calling, video chat, and P2P file sharing. The web RTC implements three API’s as shown below − MediaStream The MediaStream represents synchronized streams of media, For an example, Click on HTML5 Video player in HTML5 demo section or else click here. The above example…