template html css responsive

Solutions on MaxInterview for template html css responsive by the best coders in the world

showing results for - "template html css responsive"
Diego Alejandro
21 Oct 2018
1<!DOCTYPE html>
2<html lang="en">
3<head>
4  <meta charset="UTF-8">
5  <meta http-equiv="X-UA-Compatible" content="IE=edge">
6  <!-- Meta tag for viewport width -->
7  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8  <!-- Link tag to include the css file -->
9  <link rel="stylesheet" type="text/css" href="./style.css">
10  <title>Title</title>
11</head>
12<body>
13  <!-- START YOUR CODE BELOW -->
14  <h1>Hello, World!</h1>
15
16  <!-- INCLUDED SCRIPT TAG -->
17  <script src="./script.js"></script>
18</body>
19</html>