20 lines
414 B
HTML
20 lines
414 B
HTML
<script type="module" src="main.js"></script>
|
|
<script src="parser.js"></script>
|
|
<div id="text"></div>
|
|
<style>
|
|
#text {
|
|
white-space: pre;
|
|
}
|
|
.cursor {
|
|
border-left: 2px solid #000;
|
|
margin-left: -1px;
|
|
margin-right: -1px;
|
|
animation: blink 1s step-end infinite;
|
|
}
|
|
@keyframes blink {
|
|
50% {
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
</style>
|