HTML means Hyper Text Markup Languages.
The first use of HTML, which started in 1991, is the indispensable web of our lives. The latest version of HTML5 has been used since 2012.
HTML is not a programming language. Because we cannot write a program that works with HTML codes on its own. However, we can write programs that can work through programs that can interpret this language. For this reason, HTML is not considered a programming language.
The following image shows the development and change of HTML from past to present.
Main Purpose;
Visual, text and video content on the web page provides positioning.
– This content is displayed in the right way to ensure that the content.
– Gives information to search engines about websites.
You can use editors such as Dreamwear, sublimeText, notepad ++, Brackets to write the html code. Written html codes are saved with .htm, .xhtml, or .html extension.
HTML Page Structure
Sample HTML Code
<!DOCTYPE html> <html> <head> <title>IT Tuttorial</title> </head> <body> <h1>Hello ISTANBUL</h1> <p>Business informatics (BI) or organizational informatics is a discipline combining information technology (IT), informatics and management concepts.</p> </body> </html>