Answers for "html nice templates"

2

basic html template

Basic Html Template:
<html>
  <head>
    <title>
    	/* document title here */
    </title>    
    /* document meta information and external file include written here */
  </head>
  <body>
  	/* document body goes here */
  </body>
</html>
Posted by: Guest on April-12-2020
0

html templates

<!DOCTYPE html>
<html lang="en">
  <head>
    <!--Meta Info-->
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>My Website</title>
    
    <!-- Website Icon -->
    <link rel="icon" href="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" type="x_icon">    
    <!-- import the webpage's stylesheet -->
    <link rel="stylesheet" href="style.css">

    <!-- import the webpage's javascript file -->
    <script src="script.js" defer></script>
  </head>  
  <body>
  </body>
</html>
Posted by: Guest on February-03-2021

Browse Popular Code Answers by Language