RE: How to become a Programmer for Complete Noobs! Part 2 by keep0nl3arning
Viewing a response to: @keep0nl3arning/re-geekpowered-re-keep0nl3arning-how-to-become-a-programmer-for-complete-noobs-part-2-20180115t050415911z
tech·@geekpowered·
0.000 HBDThat's not a "program". The web browser is simply displaying what is essentially a text file. ``` <html> <head> <title>Hello World</title> </head> <body> <h1>Hello World!</h1> </body> </html> ``` Still not a program, but it is HTML. That's one of the simplest HTML sites you can make. Teaching people how to properly make those tags and nest them, that's the simplest HTML introduction you can do. HTML is not a programming language. It's a formatting language. It's in the name. It's a markup language.
👍