simply use notepad or any html editor and create a file any name basically main file name is index.html or index.htm and type following lines < !DOCTYPE html > these type of word used in html and called tag every tag start with <tag name..> simply and end with </tag name> eg. <html> end with </html> Three main section in html page first is top part covered with <html> which is as big as page. other tag store in this area first top area for special tags like meta tag, utf setting etc and include css files(for special formating), java script external files etc. Then start <head> and which is also end with </head> in this portion include page title tag <title>your page title</title> inbound css command and java script command written here. <style> css commands </style> <script> java commands...</script> after that ...