
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 2202 Articles for HTML

66K+ Views
In an HTML web page, the space between elements refers to the area around and between different elements, such as text, images, and other HTML elements. There are several ways to add space between elements in web design. One common method is to use CSS (Cascading Style Sheets) to create margins and padding around elements. Adding space between HTML elements using CSS Web design often requires adding space between elements to create a visually pleasing layout and improve readability. Web design has several ways to add space between elements. One common method is to use CSS (Cascading Style ... Read More

242 Views
A quote is a text element that is used to indicate a quotation or a passage of text that is being referenced or cited. There are two main ways to create a quote in HTML: the "blockquote" tag and the "q" tag. Adding a section that is quoted from another source using HTML To add a section that is quoted from another source in an HTML document, we use the tag. The tag is used to indicate that the enclosed text is a quote from another source. To use the tag in your HTML ... Read More

5K+ Views
Generally, developers add the submit button to submit the input field's text. However, if they allow users to submit the input value by pressing enter, it improves the UX of the application. Here, we will learn the general way to detect the key press using the key listener event. Afterwards, we can perform any operation whenever the user presses the enter key button. Syntax Users can follow the syntax below to detect whenever the user presses the enter key. input.addEventListener("keypress", function (event) { if (event.keyCode == 13) { // enter pressed ... Read More

48K+ Views
To trigger a file download when clicking an HTML button or JavaScript, is a very common and important part of web page where users can directly download the file they want by clicking a button or link. We will be understanding four different approaches to achieve this. In this article, we are having a button in our HTML document and our task is to trigger a file download when clicking an HTML button or JavaScript. Approaches to trigger file download Here is a list of approaches to trigger a file download when clicking an HTML button or JavaScript which we ... Read More

878 Views
Markup languages like HTML and WML are primarily used to serve website content. The targeted systems that each language is intended to support are the fundamental distinctions between WML and HTML. HTML was developed to deliver material to personal computers, which have sufficient computational power to spare for processing and rendering the information. When the internet started to spread to mobile devices, it quickly became clear that these devices lacked the processing capability, screen size, and colour gamut necessary to support HTML. WML was created as a replacement for HTML for providing web content to mobile devices. Wireless Markup Language ... Read More

840 Views
Graphics are the visual representations that are used to represent any idea or imagination in order to enhance the overall experience of the website for the user. Graphics helps in conveying a complex message to the user in a simple and understandable way. Some ways of representing message in graphics are through photos, arts, diagrams, flowchart etc. Graphics in HTML are used for enhancing the appearance of webpage or website and to make the user interaction simple. There are different uses of graphics in HTML for which we have different technologies. We will discuss few of them below. SVG ... Read More

363 Views
In this article we will discuss about Table layout and its functions. We will understand why table layout is the least used layout in HTML and why it is not much recommended layout while designing website. A layout in HTML specifies the fundamental organisation and visual style of a website. A website's HTML layout serves as a guide for how the HTML elements should be placed. It gives you the ability to build websites with basic HTML tags. Table Layout Due to its complexity, table layout is one of the least recommended layouts in HTML. It is based on ... Read More

381 Views
The Input element in HTML is used to create interactive controls for web-based forms for accepting data from the user. element has only opening tag and element will work only if we will add it between tags. Input element is considered as one of the most powerful and complex HTML element because of the massive number of combinations of attributes and input types. We have several attributes that we can use with element but we can use only one attribute at a time as per the need. E-mail Attribute As the name suggests email attribute ... Read More

6K+ Views
In HTML, a layout defines the basic structure and appearance of a website. HTML layout is a blueprint that shows us how the HTML elements are arranged in a webpage. It provides you the functionality of creating webpages using simple HTML tags. DIV Layout Div layout is the most common layout in HTML and is based on elements. element in HTML is used to define section of document. tag is a container tag i.e. it has both opening and ending tag. We can define multiple elements inside a HTML document and each of them ... Read More

338 Views
We will discuss about element syntax, properties and different ways of using it in HTML. And at last, we will understand why is it suggested to use element in your HTML document. But before all this we must learn about HTML element. HTML element is a section of an HTML document that tells the browser, how to represent the information of that section. It contains necessary information like instructions, idea of the webpage and main content. HTML element mainly consists of three parts − Opening tag − It marks the beginning of the HTML element ... Read More