- HTML stands for Hyper Text Markup Language.
- HTML is a markup language, not a programming language.
- A markup language is a set of markup tags for markup content.
- HTML tags describe document content
- HTML documents contain HTML tags and plain text
- Files saving extension is .html
- User doesn't see the HTML tags and browser markup the web page using HTML tags
HTML Document sample source is below.
<!DOCTYPE html> <html> <body> <h1>stackMyCode web title</h1> <p>This is the paragraph.</p> </body> </html>
0 comments:
Post a Comment