HTML coding is a way more complicated by look although if you were going to actually look into it, its way more simpler than what you expected. Today allow me to explain and break it down for you.

First off HTML stands for hypertext markup language. In order to code you of course need tags. What are tags you may ask? Well a tag is a command that has a greater than sign and a less than sign that will always look like such (Ex: <body>) Coding works in many ways to insert images, color, the way you want to organize it and many more. Here are just a few examples…
- In order to input an image you use this code: <img src=””/> This code stands for image source.
- In order to input a basic HTML (which is the start of all coding to get the layout and basics of) Its..
<!DOCTYPE html>
<html>
<head>
<tile></title>
</head>
<body>
<table>
</table>
</body>
</html>
This whole basic HTML may seem a little complicated to remember, and I’ll say that it honestly is but you’ll get the hand of things in no time! Using this basic HTML will always help you start off any coding that you’ll be doing, its a base/layout.

Furthermore going into the depths of coding you can set up a whole website with html coding. Yes, any websites. This is a way to organize the websites in the way you want based on color, images, background, and you can even put a table into coding with the tags of, <table>, <tr>, <td>, >/td>, </tr> and close it all off with </table>. This I’ll also say that it is complicated in a way but trust me it’ll get easier and once you set this up it’ll look more easier and you’ll understand it more for sure!
In all, HTML coding works in way that is complicated but simple, using many codes/tags to input to create an organize website.