indent html code example
Example 1: html indice
<sup></sup>
<sub></sub>
Example 2: html how to indent text
p {
text-indent: 50px;
}
Example 3: display object with indentaion in html
var data = {
"data": {
"x": "1",
"y": "1",
"url": "http://url.com"
},
"event": "start",
"show": 1,
"id": 50
}
document.getElementById("json").textContent = JSON.stringify(data, undefined, 2);
// <pre id="json"></pre>
Example 4: how to add an ident in html
.tab { text-indent:40px }