Dewen Li

A site about Dewen

HTML5 Template

2021-03-14 Dewen Liweb-development

HTML5 Template for developer

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!-- Add your style CSS file here -->
  <title>Your Page Title</title>
</head>
<body>
<!-- Your HTML Content -->
</body>
</html>

Adding JavaScript to HTML, for example, Axios library from CDN:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!-- Add your style CSS file here -->
  <title>Your Page Title</title>
  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<!-- Your HTML Content -->
</body>
</html>