1<!-- Answer to: "online html editor" -->
2
3<!--
4 A common good "online editor" would be:
5 https://jsfiddle.net/
6
7 However, for an online editor focusing specifically on html
8 this one is pretty good:
9 https://html-online.com/editor/
10-->
1<!-- Good HTML Online Editors -->
2
3<!-- Links -->
4https://repl.it
5https://codeply.com
6https://jsfiddle.net
7https://codepen.io
1// Use the w3schools tryit editor
2//for example below address
3https://www.w3schools.com/html/tryit.asp?filename=tryhtml_default
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <style>
5 #printcss {
6 margin: 6;
7 height: 300;
8 width: 300;
9
10 };
11
12 #txt {
13 width: 100%;
14 }
15 </style>
16
17 <script>
18 function prt() {
19 print();
20 };
21
22 function ref() {
23 document.location.reload();
24 }
25 </script>
26 <meta charset="UTF-8">
27 <meta name="viewport" content="width=device-width, initial-scale=1.0">
28 <title>printext</title>
29</head>
30<body>
31 <center>
32 <button onclick="ref()">new file</button>
33 <button id="printcss" onclick="prt()">print</button>
34
35
36 </center>
37 <textarea name="txt" id="txt" cols="250" rows="1000"></textarea>
38</body>
39</html>
40
41
1<!-- use https://www.onlinegdb.com best online code editor for more than 10 languages -->