how to open an html file in chrome code example

Example: how to open html file on chrome

<!-- 
right click on your html file (ending with .html)
open in with...
chrome
 -->

<!--
To make your html file, copy code below to your text editor 
and save it as - name.html
-->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <p>Hello world</p>
</body>
</html>

Tags:

Html Example