I have the need to use a basic template for a html page and it is really tiresome for me to type the same thing every time. Hence I came up with this template to copy and paste in my editor for quick process.
1. Basic
1. Basic
1:  <html>  
2:       <head>  
3:            <title>Sample page</title>  
4:              
5:       </head>  
6:       <body>  
7:              
8:       </body>  
9:  </html>  
2.  Container1:  <html>  
2:       <head>  
3:            <title>Sample page</title>  
4:              
5:       </head>  
6:       <body>  
7:            <div>  
8:              
9:            </div>  
10:       </body>  
11:  </html>  
3. Scripts and Styles1:  <html>  
2:       <head>  
3:            <title>Sample page</title>  
4:            <style>  
5:              
6:            </style>  
7:            <script>  
8:              
9:            </script>  
10:       </head>  
11:       <body>  
12:            <div>  
13:              
14:            </div>  
15:       </body>  
16:  </html>  
I hope it is useful for others.
Comments
Post a Comment