HTML
HTML is a markup language designed to create webpages and websites. It stands for Hyper Text Markup Language. It is non-case sensitive, which mean <HTML>, <HtMl>, <html> and <HtmL> are the same thing. In this blog, you will learn the basics of HTML.
We need a software to write the codes. There are two types, WYSIWYG editors and text editors. WYSIWYG editors are based on what we see. WYSIWYG stands for What You See Is What You Get. Text editors need HTML tags. We will be using notepad which is a text editor. It does not need to be installed, it is built-in every computer. See (Win 7) Start > All programs > Notepad. Its icon looks like this:-
HTML tags
HTML is a language based on tags. A tag is a keyword within angle brackets. For example, an HTML tag will be written as <HTML>. There are two types of tags, container tags and empty tags. A container tag has a start AND an end, but empty tag has only the start.<Body> is a container tag and ends like </Body>.Empty tags don't have this.
<HTML> tag is the first tag to write. It is a container tag. Next is <Head> tag, <Title> tag or directly <Body> tag. All three are again container tags. <Head> tag makes a heading for the page. The <Title> tag refers to the title on the browser's title bar. <Body> tag tells the content to be written.
Then we write our content and close the opened tags. There are more tags further, but you will learn about it later. For now, as it is the basics of HTML, This much is enough.
<HTML> tag is the first tag to write. It is a container tag. Next is <Head> tag, <Title> tag or directly <Body> tag. All three are again container tags. <Head> tag makes a heading for the page. The <Title> tag refers to the title on the browser's title bar. <Body> tag tells the content to be written.
Then we write our content and close the opened tags. There are more tags further, but you will learn about it later. For now, as it is the basics of HTML, This much is enough.

Comments
Post a Comment