What is HTML
The basis of all sites that exist today is the HTML language. A simple website can be created with HTML, which is the abbreviation of Hyper Text Markup Language in English. However, this language is generally used to create the infrastructure of the site. For this reason, tags are preferred. Some formatting can be done with these preferred tags. However, CSS language is mostly used for this process. To briefly explain the CSS language; The formatting process used to make tags created with HTML more pleasing to the eye can be defined. By inferring from this sentence, we conclude that HTML and CSS languages are an inseparable whole. So, where is HTML written and what can be done with this language? You can find the answers to such questions below.
Where to Write HTML Codes?
In order to write HTML codes and get results, IDEs, that is, text editors, are needed. There are many text editors available today. These editors emerged to make the codes written more organized and faster. But you do not need an IDE to write HTML codes. You can also do this by opening a simple text document and integrating the codes below into your site. But there is something you should pay attention to here: the extension of the file containing the codes you wrote is ".html". Without this extension, the codes you write will not work in the browser.
All codes written in HTML language are opened and closed. The biggest reason for this is that the standards are like this. Additionally, before starting to code with this language, everything must be in the "html" tag. The head tag can be considered as the head part of the site, where there are generally articles containing information about the site. The body tag contains the codes that you want to see on the browser screen. The “” tag is used to leave line space between texts. The "" tag, which means break, can also be used for this process.
What Can Be Done with HTML?
A website cannot be created using HTML language alone. So it can be removed, but the page will be very blank and plain. To avoid this, CSS language should be used. CSS is the language that gives the site its actual appearance. You can then put the site into a more dynamic structure with Javascipt. You can also perform database operations by using the PHP language, which is called the backend. By inferring from these sentences, we conclude that the HTML language alone is insufficient.