JavaScript Project: Binary To Decimal Conversion

Previous Next In this example, you are going to write a program in JavaScript that takes binary input and convert it into a decimal value. This program uses JavaScript parseInt(string, radix) command where string is a string representation of number and radix is the base number system to process the number. Program Code: Binary To … Read more

JavaScript Projects: Decimal to Binary Converter

Previous Next In this article you will learn to write an application using HTML,CSS and JavaScript to convert a decimal number into a binary equivalent. The source code of the program is given below. You can use any text editor and still it will work. Program Code: Decimal To Binary Converter Output to the Browser: … Read more

JavaScript – Exercise 16 – Array of Objects

Previous Next Earlier in the previous articles, you learned about objects and nested objects. In this article, you will learn about array of object. This kind of representation is known as JavaScript Object Notation(JSON) where objects are stored in key: value pair or arrays. The JSON is open standard to store and transmit data objects … Read more

HTML Projects : Personal Portfolio

A personal portfolio is required to tell other people about you work as a professional. In this article, you will create a personal portfolio page with dummy content. The project has following things A banner displaying your name Navigation link that when clicked will open to different section of the page. A grid view of … Read more

HTML Projects: Technical Document

In this article, you will learn to create an HTML page for technical documentation. The technical documents usually have two columns and left or right columns have links to other section of the main document or another page. The links in the sidebar when clicked will open in a section of the document. Program Code: … Read more

HTML Projects : Survey Form

In this article, you will learn to make survey form using HTML and CSS. The survey form will no do anything, however, you will be able to use HTML elements to create a form and style it with CSS. This survey form is a feedback for a school.The survey form will ask following questions: Name, … Read more

HTML Projects: Product Page using Flexbox

In this exercise, we will create a simple product page using CSS <mark style="background-color:rgba(0, 0, 0, 0);color:#a61919" class="has-inline-color">flex </mark>box. The product page has following features listed below. Logo and fixed header A form to subscribe using email address Product detail section. Product description section. Product video. Finally, a section with 3 product feature box. HTML … Read more

CSS Project – Burning Candle

In this project, you will learn to create a burning candle with flame with the help of HTML and CSS. HTML Code: burning-candle.html CSS Code: burning-candle.html Now we will insert the following CSS code in the <head> section of the HTML page – burning-candle.html. The entire page will look like the following. Whole Program Code … Read more

JavaScript – Exercise 15 – Nested Objects

Previous Next In the previous article, you learned about the objects and its properties.In this article, you will learn about nested objects, that is, objects with in another object. This is very important to create a list of objects. Structure of nested objects The nested objects are objects themselves becoming properties of another object. They … Read more

JavaScript – Exercise 14 – Functions

Previous Next JavaScript functions are named block of codes that can be called several times. It save time by programmers not writing the same code several times. Since, it is widely used feature, we decided to introduce it in object example section and not earlier. In this article, we are going to understand a function … Read more

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.