Good day to you. This time we will learn how to create our first HTML document. HTML stands for HyperText Markup Language, is a standard markup language used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>). Click this link for more info about HTML.
See this code below.
 <!DOCTYPE html>  
 <html>  
 <head>  
    <title>Title here</title>  
 </head>  
 <body>  
   <h1>Heading here</h1>  
   <p>Some paragraph here.</p>  
 </body>  
 </html>  
This will output like the image below.
Hope you learn a little again. Wait for the next tutorials for we will dig deeper on HTML elements.
Thank you for visiting.
Courtesy to :
- CodeFormatter for the nice formatted pre element
 - Wikipedia for HTML definition
 
No comments:
Post a Comment