HTML intro

HTML Introduction Basically, HTML code looks just like regular text. The most identifiable feature of HTML code is the use of angle brackets . These angle brackets enclose the markup code which tells the browser how to display the document data. Here’s an example of some simple HTML code: <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a heading.</h1> <p>This is a paragraph.</p> </body> </html> There are three components that form the basic building blocks of HTML code: tags, elements and attributes. Once you’ve learned the rules for how each of these components function, you should have no trouble writing and editing HTML. heading tag Paragraph tag Text formatting tags <b> – Bold text <strong> – Important text <i> – Italic text <em> – Emphasized text <mark> – Marked text <small> – Small text <del> – Deleted ...