Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
<style>
:root {
font-size: 50px;
caret-color: orange;
}
[contenteditable] {
outline: none;
}
</style>
<main>
<a id="link" style="caret-color:orange;" contenteditable href="">link</a>
</main>
<script>
window.onload = function() {
document.getElementById("link").focus();
}
</script>