HTML
1
2
<html>
3
<head>
4
<title>Title</title>
5
</head>
6
<body>
7
<h1>Coditor</h1>
8
<p contenteditable="true" align="center">This is a sample text you can play with!</p>
9
</body>
10
</html>
CSS
x
1
/* CSS code */
2
3
h1 {
4
font-family: Arial,sans-serif;
5
text-align: center;
6
color: tomato;
7
}
8
JavaScript
2
1
// JavaScript code
2
Output: