Skip to main content

Posts

Showing posts from March, 2017

First Lesson Of HTML

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 ...

Who Develop HTML

Sir Berners-Lee Is the Person behind the invention of HTML. AT CERN The European Paraticle Physics Laboratory in 1980. He wrote the first web client and server in 1990 there. Sir Tim Berners-Lee Biography Tim Berners-Lee invented the World Wide Web in 1989. He founded and Directs the World Wide Consortium (W3C) the forum for technical development of the Web. He founded the Web Foundation whose mission is that the WWW serves Humanity, and co-founded the Open Data Institute in London. His research group at MIT's Computer Science and AI Lab ("CSAIL") plans to re-decentralize the Web. Tim spends a lot of time fighting for rights such as privacy, freedom and openness of the Web. A graduate of Oxford University, Tim Berners-Lee invented the Web while at CERN, the European Particle Physics Laboratory, in 1989. He wrote the first web client and server in 1990. His specifications of URIs, HTTP and HTML were refined as Web technology spread. He is the ...