index.html
· 362 B · HTML
Raw
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="index.js"></script>
</body>
</html>
| 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.0" /> |
| 6 | <meta http-equiv="X-UA-Compatible" content="ie=edge" /> |
| 7 | <title>HTML 5 Boilerplate</title> |
| 8 | <link rel="stylesheet" href="style.css"> |
| 9 | </head> |
| 10 | <body> |
| 11 | <script src="index.js"></script> |
| 12 | </body> |
| 13 | </html> |