html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>test textContent</title>
</head>
<body>
<h3>test textContent</h3>
<p>to:</p>
<div id="result"></div>
<p>from:</p>
<div id="test">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
<script>
result.textContent = test.textContent;
</script>
</div>
<style>
p:nth-child(2){display:none;}
</style>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
background-color: #f0f0ff;Color: #444499;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run