HTML (Hypertext Markup Language) is the foundation of a website. While you may see file extensions like php, cfm, asp, etc., these files will still contain HTML tags in order to display content. An HTML file is placed on a server and when requested by a user, it is read into the user’s browser and displayed as a web page.
The standards and practices for writing HTML are set by the World Wide Web Consortium (W3C) and there are multiple versions of HTML. Since this is more of an introduction to HTML, we will not go into detail about the various versions like XHTML, HTML 4.01, and HTML 2.0. We also won’t go into classifications of standards like strict, traditional, and frameset.
HTML is a very easy language to learn and super simple to write (not that I would necessarily call HTML a language so to speak). A Markup Language is defined as transporting data, not acting upon the data itself. The “code” is encapsulated in a skeleton like the example below.
<html> <head> <title> </title> </head> <body> </body> </html>
HTML Skeleton
Example
As you can see, the language uses words contained inside <>, known as tags or elements. You also might notice that every tag is almost duplicated, but the second tag has a / before it. These are referred to as opening and closing tags and are required by most HTML elements. The important tags here are <html>, <head>, <body>. The <html> simply tells the browser, “Hey, this is html code.” While the <head> tells the browser specific things about the document, it does not display anything on the web page. Finally, anything inside of the <body></body> tags will display in the web page. We will go into more detail about the <head> and <body> later.
References
Just taken the HTML quiz without studying and got a 88% score. Sigh…. I fail lol
I think you should say that Tim-Berners Lee invented it.
I think the meta tag should be there.
Excellent reference material
quite helpful…… i learned many new things
seems to be easier to me……
When I click on ‘Test Your Code’, nothing happens.
”’
print("seem like this is going to some fun")
print("I will let you know how I like it")
”’
print("Please reply to my comments.")
now i know what the use of this abbreviations.. the concepts is already there..you will HTML is the conveyance of data to WEB expressing a simple hyper language.
thank you i understand the use of the head
Very simple, the especifications are very deep so people can easily understand that programming lenguage.
I am asking about in HTML skeleton
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
I got it if i am right, heading tag we use in body tag so script tag must be in body tag 🙂
Where is the script tag ?
I kinda like this, but im young and still got a lot of room in my head
good stuff
New To HTML and found this a very easy intro.
Great overall tutorial! Would love to see some more HTML5 tips.
This is a great tutorial, I have learned a great deal!
I liked this tutorial. I learned HTML a while back, and this was a good refresher!
I am feeling good
nice basic intro to html.
This is awesome
easy to learn 🙂 I love it
I believe there is an error here:
"To get started with testing your JavaScript, HTML, and CSS code try adding an <h1> tag. Hint: The tag should be placed between the <body> and <script> tags. After you have inserted the <h1> tag, click the "Test Code" button."
You reference <script> tag. Since it wasn’t in the template I was a bit confused.