Knowledge Walls
John Peter
Pune, Maharashtra, India
HTML basic template in HTML of Code Template
4323 Views
Hints 
HTML 5
DOCTYPE only has to specify html. No need to point any specific DTD definitions. Style and Script tags are by default recoginize the type of the content. So that type attribute is optional in HTML 5 version of documents.
HTML 5 basic startup example template
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <style>
            <!-- CSS Properties -->
        </style>
        
        <script>
            <!-- JS Script -->
        </script>
    </head>
    <body>
        <!-- Page Display Contents -->
        
    </body>
</html>
Example
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <title></title>
    </head>
    <body>
        
    </body>
</html>
Next Topics
Next lessons of current book.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details