Introduction example definition of HTML
HTML Introduction HTML means Hyper Text Markup Language . Current version of HTML is HTML 5 and the first version is HTML 1.0 . HTML is one of the easiest coding language to learn. When creating a web page there are some sections one must know, such as HTML, CSS, Javascript . HTML Structure <!DOCTYPE html> <html> <head> <title> Webpage Title </title> <style> /*CSS styles written here*/ </style> <script> /*Javascript code written here*/ </script> </head> <body> <!--HTML tags written here--> </body> </html> CSS style CSS is defined as Cascading Style Sheet . After HTML, we should learn CSS. CSS is used to give styles for the web pages. Styles include adding colors, animations, bordering styles etc. CSS can be included in a web page using three different ways, we will see those in detail in CSS chapter. CSS styles can be added to a webpage dependin...