how to display html code in browser

Solutions on MaxInterview for how to display html code in browser by the best coders in the world

showing results for - "how to display html code in browser"
Albin
09 Apr 2016
1<html>
2    <body>
3        <h1>hi this is a basic display html code on browser by yasin</h1>
4        <textarea class="display">
5    <html>
6        <body>
7            <h1>hi this is a basic display html code on browser by yasin</h1>
8        </body>
9    </html>
10</textarea>
11
12    <style type="text/css">
13        .display{
14            height: 100px;
15            width: 500px;
16        }
17    </style>
18
19    </body>
20</html>
21
22
23