basic html tags for beginners
Basic HTML Tags for Beginners HTML is the markup language that is predominantly used in web pages. It is the one which tells the computer how information contained in the page is to be displayed. Learning how to write HTML codes is an important skill that any web designer should have. Below is a list of the most common HTML tags used to help beginners become familiar with this language. 1. <HTML></HTML> - are the opening and closing tags used at the beginning and end of each HTML file. 2. <HEAD></HEAD> - comes after the <HTML> tag and it is where information that is not displayed on the website can be found. It includes META tags, style sheets and Java Scripts. 3. <TITLE></TITLE> - is enclosed within the HEAD tags and it is where the title of the web page is placed. 4. <BODY></BODY> - it is within these tags that the things displayed on the website can be found. 5. <EM></EM> - the tag stands for emphasis. It replaced the <I></I> tags which were used to make the text inside the tags italicized. 6. <STRONG></STRONG> - are tags used to make the text within them bold. 7. <H1></H1> to <H6></H6> - are used for headers. Placing text within any of these tags makes the font larger or smaller than the normal text and bold. 8. <P></P> - placing text within these tags turns them into a single paragraph. A single line break is automatically added below the last line of the displayed text.