1 / 3

HTML TUTORIAL FOR BEGINNERS

We offer free online html tutorial for beginners https://www.phptpoint.com/html-tutorial/

sanjeevrao
Download Presentation

HTML TUTORIAL FOR BEGINNERS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML TUTORIAL FOR BEGINNERS While many online guides try to use a lot of mind-boggling theory to teach HTML, this tutorial will instead concentrate on giving you the practical skills to create your first site. The goal is to show you how to build your first web page without focusing too much on the "why" in the entire tutorial. You will have the know-how to build a simple website by the end of this tutorial and we hope this will motivate you to further delve into the HTML world using our follow-on guides. Starting in 1989, Tim Berners-Lee, Robert Cailliau, and others first developed HTML. It stands for Hyper Text Markup Language. Hypertext means that there are links in the document that allow the reader to leap to other places in the document or completely to another document. The most recent release is known as HTML5.

  2. Features of HTML Well, there are so many HTML features but we're going to cover the most important ones in this HTML tutorial. •HTML defines a web page structure. •Tags, which are human-readable, are represented by HTML elements. •HTML is supported by any known browser available today. •Learning and using it is quite easy. In a few days, you can easily learn HTML programming and create your first web page or design an entire website, but it depends on how long you spend practising. •It is independent of the platform, which ensures that it runs on all operating systems. <!DOCTYPE html> <html lang="en"> <HTML> <head> <title> Page Title </title> </head> <body> <h1> This is a Heading </h1> <p> This is a Paragraph </p> </body> </html>

  3. Explanation •<! DOCTYPE >: Describes the document type in the HTML version. •< html >: the root element describing a Web document. It is a paired tag, i.e., it also has a < /html > closing tag. Anything inside those tags will be written. •<head >: contains information about the document, such as its title, information about the author, website description, etc. To achieve these tasks, it has various tags. It is a paired name, as well. •< title >: inside < head > is used and the document title is specified. •< body >: it includes all the information that will appear on the website. If you want to view something on the webpage you must write it in this tag. •< h1 >: To describe the headings, this element is used.

More Related