Attributes in HTML

HTML Attributes To provide some extra information about a particular element, attributes are used in an HTML document. An attribute is applied within the start tag of a particular element and contains two fields: name & value. Some of the basic and most used attributes are discussed below. Syntax: <tag name attribute_name= ” attr_value”> content … Read more

HTML Tags

An HTML tag is written between < and > brackets and acts as a container for different types of content. Each tag has its own specific meaning, and the same applies to the content within it. A web browser reads an HTML document from top to bottom and left to right. Keywords to define the … Read more

Data Types in SQLite

SQLite Data Types A more general dynamic type data type system is used in SQLite to represent the type of data that can be stored and processed and to specify the type of operations that can be performed. These data types are divided into various categories, where the value of a data type is not … Read more