how to open html file on chrome

Solutions on MaxInterview for how to open html file on chrome by the best coders in the world

showing results for - "how to open html file on chrome"
Garance
12 Jul 2020
1<!-- 
2right click on your html file (ending with .html)
3open in with...
4chrome
5 -->
6
7<!--
8To make your html file, copy code below to your text editor 
9and save it as - name.html
10-->
11
12<!DOCTYPE html>
13<html lang="en">
14<head>
15    <meta charset="UTF-8">
16    <meta name="viewport" content="width=device-width, initial-scale=1.0">
17    <title>Document</title>
18</head>
19<body>
20    <p>Hello world</p>
21</body>
22</html>