Posts

HTML Basics

HTML BLOCK  PART  1. The basic html (hyper text markup language) is a simple and basic language to create a web site . is a basic programing language that use to create a web site structure such as tables contents links images and other simple words language that is use to create a web site structure.  BASIC BODY IN ANY IDE: syntax: <! DOCTYPE html > < html Lang = " en " > < head >     < meta charset = " UTF-8 " >     < meta http-equiv = " X-UA-Compatible " content = " IE=edge " >     < meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >     < title >Document</ title > </ head > < body > </ body > </ html > At the beginning the html which shows the normal term that the text is document type . which tells the browser that this  html file is document type. And the code will use is document type. Further more the html tag is ...