8 lines
192 B
HTML
8 lines
192 B
HTML
<h1 id="abc">Ttesttt</h1>
|
|
<h1>Ttesttt</h1>
|
|
<script>
|
|
window.onload = () => {
|
|
document.getElementById("abc").innerHTML = window.location.pathname.split("/").at(-1);
|
|
};
|
|
</script>
|