Category Archive for: HTML

HTML Tags

HTML is basically written in the form of HTML elements consisting of tags enclosed in angle brackets. (For example <html>) HTML tags most commonly come in pairs like <h1> and </h1>,where <h1> called opening tag (Start tag) and </h1> called closing tag (End tag). Each and every tag consists of a separate tag name, followed by a list of tag attributes (if necessary), HTML…

Read More →

HTML Structure

The basic structure of HTML is <HTML>   <HEAD> … </HEAD>   <BODY> … </BODY>   </HTML>   An HTML document should starts and ends with <html> and </html> tags. Because these tags tell the browser that the entire document is composed in HTML. Then inside these two tags, the document is split into two…

Read More →

HTML Versions

HTML 1.0 (1989 – 1994): It was the first version of HTML that supported only text controls and inline images. It could not allow us to use tables, frames, forms, or to change page background. So all the web page created with this version looked the same. Since W3C (World Wide Web Consortium) did not…

Read More →

HTML Introduction

HTML is the standard markup language used to create web pages and it was made by the World Wide Web Consortium (W3C). HTML Prerequisites: For HTML, You will simply need a basic text editor, such as Notepad and an Internet browser, such as Internet Explorer or Chrome. And also you can use a dedicated software program such as Dreamweaver or Microsoft…

Read More →

Back to Top