Homepage › Forums › Articles › Programming › Markup Languages and Style-sheets › HTML5 Template
This topic was published by DevynCJohnson and viewed 1341 times since "". The last page revision was "".
Viewing 1 post (of 1 total)
- AuthorPosts
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
- Mozilla <math> - https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
- Test Web-browser's HTML5 Support - https://html5test.com/
- Validate HTML5 - https://html5.validator.nu/
- AuthorPosts
Viewing 1 post (of 1 total)