- 6
what is html
it can teach me hacking
1 Answer
+ 3
HTML stands for Hyper Text Markup Language and is primairly used by front-end developers and designers to structure and organize information for a website. If you are developing a webpage and you on that page want a heading with a picture under it, you indicate that for the web browser by using HTML-elements like this:
<h1>Header Text</h1>
<img src="picture.jpg" alt="A sunrise" />
If you are interested in web security/hacking HTML is absoluetly necessary to learn. It is the absolute basic component for a website. HTML will not teach you "hacking". But it will be one of many jigsaws towards the completion of the "hacking puzzle".
To be or become an expert in security/hacking you would also need a firm knowledge in programming, data communication, computer technology, database technology & more.