html 5 code template

Solutions on MaxInterview for html 5 code template by the best coders in the world

showing results for - "html 5 code template"
Giorgio
04 May 2018
1<!doctype html>
2<html lang="en">
3<head>
4  <meta charset="utf-8">
5  <meta name="viewport" content="width=device-width, initial-scale=1">
6  <title>Your Title</title>
7  <meta name="description" content="Your description">
8  <meta name="author" content="You">
9  <link rel="stylesheet" href="css/style.css">
10</head>
11<body>
12  <script src="js/script.js"></script>
13</body>
14</html>