HTML5 Template

This topic was published by and viewed 1271 times since "". The last page revision was "".

Viewing 1 post (of 1 total)
  • Author
    Posts

  • DevynCJohnson
    Keymaster
    • Topics - 437
    • @devyncjohnson

    Deprecated tags

    • acronym
    • applet
    • basefont
    • big
    • center
    • dir
    • font
    • frame
    • frameset
    • noframes
    • strike
    • tt

    Sample Code

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title>Sample Document</title>
    <meta charset="utf-8"/>
    <link href="css/stylesheet.css" rel="stylesheet"/>
    <script src="scripts/javascript.js"></script>
    </head>
    <body>
    <h1>General Document</h1>
    <!--HTML5 comment-->
    <p>Basic HTML5 Template</p>
    </body>
    </html>

    HTML5 with MathML

    <!DOCTYPE html><html>
    <head><title>HTML5 with MathML</title></head>
    <body>
    <math><mrow>
        <mrow>
            <msup><mi>a</mi><mn>2</mn></msup>
            <mo>+</mo>
            <msup><mi>b</mi><mn>2</mn></msup>
        </mrow>
        <mo>=</mo>
        <msup><mi>c</mi><mn>2</mn></msup>
    </mrow></math>
    </body>
    </html>

    Further Reading

Viewing 1 post (of 1 total)