Types of CSS

Most commonly used types of CSS are: 1. Local Style (inline style) It is defined with-in a tag using an attribute style. It’s scope is limited to a tag in which it is defined. 2. Internal Style It is defined with-in a head block using a tag style. Its scope is limited to all those … Read more

Introduction to CSS

CSS means Cascading Style Sheet It is used to customize in-built HTML tags, means defining user-defined styles to HTML tags. Selectors P  Property: value <P Style = “Color: red; Background-color: orange; Font-size: 14pt; Text-align: right”> Semicolon is deli meter for properties. Colon is separator for property and values. <h1> is called tag <h1>Hello</h1> is … Read more

HTML Tags

There are two HTML tags: Starting tag and Closing tag For example: <b> Hello Dear </b> Here, <b> is starting tag and </b> is closing tag. Here, <b> Hello Dear </b> completely treated as an element. In a web development interview, when asked about HTML tags, it’s essential to provide a comprehensive understanding of HTML, … Read more

Introduction to HTML

HTML  means Hyper Text Markup Language. It is used to define the structure of the document and its format. Hypertext is the text, which refers further text. HTML is used to create static web pages, which are used to represent the data on the web. It is not case-sensitive. It provides tags, which has I-built … Read more