Horje
HTML5 Template Code Example
HTML5 Template
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>My Page Title</title>
  <meta name="description" content="My Page Description">
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
  <script src="js/scripts.js"></script>
</body>
</html>
HTML5 Template
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="add-your-filename-here.css">
        <title>Add your title here</title>
    </head>
    <body>
        <script src="add-your-filename-here.js"></script>
    </body>
</html>
html boilerplate
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <link rel="stylesheet" href="Index.css" />
        <title>Title</title>
    </head>
    <body>
        <script src="Index.js"></script>
    </body>
</html>
default html template
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>My Page Title</title>
  <meta name="description" content="My Page Description">
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
  <script src="js/scripts.js"></script>
</body>




Html

Related
favicon HTML Code Example favicon HTML Code Example
qs cdn Code Example qs cdn Code Example
how to open link in new tab Code Example how to open link in new tab Code Example
htaccess remove .html Code Example htaccess remove .html Code Example
file input only images Code Example file input only images Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
30