Containerization Technology and its Benefits

In this article on Containerization Technology and its Benefits, I will explain the concept of containerization. In order to run an application anywhere we use containers. Basically, containerization allows an application to run in isolation. The goal of containerization is to create a bundle comprising of all necessary components required to run an application. So, containerization combines the application executable […]

HTML and JavaScript Examples

This article presents some HTML and JavaScript Examples. Write HTML code to create a web that displays a list of courses in an unordered list and displays an image in place of bullets. In order to demonstrate the use of the background-image property, create a web page that displays a web page with a background image. For the purpose of […]

Features and Benefits of Amazon S3 Bucket

In this article on Features and Benefits of Amazon S3 Bucket, I will explain Amazon S3 Bucket and its features. Basically, S3 is a storage service provided by Amazon. S3 stands for Simple Storage Service. It provides scalability required by the application. Moreover, Amazon S3 is suitable for customers of all sizes. In fact, a bucket in AWS is a […]

How to Create a Multi-Page Document in HTML

In this article, I will describe How to Create a Multi-Page Document in HTML. For this purpose, we will develop an HTML application that contains a home page and five other pages. Accordingly, the problem statement is given below. Create an HTML document containing following five pages. Create a web page containing information about formatting styles and headings. The following […]

How to Use ID and Class Attributes in JavaScript?

In this article, I will explain How to Use ID and Class Attributes in JavaScript. ID Attribute Basically, the ID attribute uniquely identifies an HTML element. For the purpose of styling an HTML element in a specific manner, we use its ID. Moreover, we can access an HTML element in JavaScript using its ID. In fact, JavaScript offers several methods […]

How to Handle Mouse Events in JavaScript

In this article, I will explain How to Handle Mouse Events in JavaScript. The following code example shows handling five mouse events – mouse up, mouse down, mouse enter, mouse leave, and mouse move. When user presses the mouse button, mouse down event occurs. Similarly, when user releases the mouse button, mouse up event occurs. Likewise, mouse enter event occurs […]

How to Create a Pie Chart in ASP.NET

In this article, I will describe How to Create a Pie Chart in ASP.NET. Basically, a pie chart depicts the proportion of a specific part to the whole. In fact, we use the pie chart to visualize the percentage of different parts. For instance, suppose we have the data of sales of laptops belonging to the different brands. Further, we […]

Admission Form in HTML

This article describes how to create an Admission Form in HTML. The following code shows the example of an HTML Form that we can use for Admission for a course. Basically, an HTML form allows user to provide their input to a website. In other words, an HTML form displays various input controls so that the user can enter some […]

SQL Queries – Basic to Advanced

In this article on SQL Queries – Basic to Advanced, I will discuss how to formulate SQL queries. The following section specifies the database tables that we use for the queries. Also, we create the tables on Oracle 11g Database Create the following tables. To begin with, we need to create two tables – EmpDetails, and EmpDesignation. The following tables […]

Examples of Formatting Tags in HTML

This article demonstrates the Examples of Formatting Tags in HTML. In order to display the tag names, we use the symbol entities &lt; and &gt; These symbol entities represent < and > respectively. After that, an example of each of the formatting tag is provided. Since we do not need to use the CSS for formatting, these tags offer a […]