HTML

HTML Style Attribute

With the HTML style attribute, you can change the size, colour, font, and other styles of an element. The Style Attribute of HTML The style attribute can be used to change the style of an HTML element. The HTML style attribute is written in this way: <tagname style=”property-name:attribute-value;”></tagname> The Example is made with CSS. A […]

HTML Style Attribute Read More »

HTML Paragraphs

HTML Paragraphs A paragraph is a block of text that always starts on a new line. The HTML <p> element defines a paragraph. A paragraph always starts on a new line, and browsers automatically add some white space (called a margin) before and after it. <p>Your first  paragraph.</p> <p>Your another paragraph.</p> HTML Display You can’t

HTML Paragraphs Read More »

HTML Headings

Headings in HTML The <h1> to <h6> tags are used to set up headings in HTML. <h1> shows which heading is the most important.<h6> is the heading that is the least important. The <h1> to <h6> tags define six different HTML headings, from the highest level h1 (the main heading) to the lowest level h6

HTML Headings Read More »

HTML Attributes

Attribute in HTML Attributes in HTML are special words that tell you more about an element. Attributes change the way an HTML element works. Attributes can be added to all HTML elements. Each element or tag can have attributes that tell how that element should act. Attributes should be used only with the start tag.

HTML Attributes Read More »

HTML Elements

Elements make up an HTML file. These elements are what make web pages and tell you what content is on them. In HTML, an element is usually made up of a start tag (<tag name>) and an end tag (</tag name>) with content in between. From a technical point of view, an element is made

HTML Elements Read More »

HTML Tags

Learn HTML Tags HTML tags are kind of like keywords that tell a web browser how to format and show the content. A web browser can tell the difference between HTML and plain text with the help of tags. There are three main parts to HTML tags: the opening tag, the content, and the closing

HTML Tags Read More »

HTML text Editors

Editors for HTML text HTML files are text files, so any text editor can be used to make them. Text editors are programmes that let you make changes to written text. To make a website, we have to write our code in a text editor. You can directly download many different types of text editors,

HTML text Editors Read More »

HTML Basic Examples

In this chapter, we’ll show you some simple examples of HTML code. Don’t worry if we use tags that you haven’t seen before. HTML Documents All HTML files must start with <!DOCTYPE html>, which says what kind of file it is. The HTML document starts with the <html> tag and ends with the </html> tag.

HTML Basic Examples Read More »

What is HTML

HTML stands for Hyper Text Markup Language, which is a programming language used to make web pages and web apps. Let’s find out what Hypertext Markup Language and a Web page mean. HyperText is just another way of saying “Text within Text.” A hypertext is a text that has a link in it. When you

What is HTML Read More »

Introduction to HTML

HTML Introduction HTML is the most common language used to mark up Web pages. What does HTML mean? Hyper Text Markup Language is what HTML stands for. HTML is the most common language used to mark up Web pages. HTML describes how a Web page is put together. HTML is made up of a number

Introduction to HTML Read More »

Scroll to Top