JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">Just a boring link</a>
<a href="#">And another boring link.</a>
<strong>This is some strong text!</strong>
<div id="output-wrapper">
Output:
<div id="output">
</div>
</div>
CSS
#output-wrapper {
margin: 20px 0 0 20px;
}
#output {
margin: 20px;
margin-left: 0;
background: #fff;
padding: 20px;
border:1px solid #ccc;
}
JavaScript
var output = document.getElementById("output");
var links = document.getElementsByTagName("a");
for (var i = 0; i < links.length; i++) {
output.innerHTML += "<br />" + links[i].innerHTML;
}