30 lines
720 B
HTML
30 lines
720 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Fingernails on a chalkboard</title>
|
||
|
<style type="text/css">
|
||
|
html,body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
body {
|
||
|
margin: 0;
|
||
|
background-color: black;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
user-select: none;
|
||
|
cursor: none;
|
||
|
}
|
||
|
#crka {
|
||
|
color: white;
|
||
|
font-family: Courier;
|
||
|
font-size: 12rem;
|
||
|
}
|
||
|
</style>
|
||
|
<script src="animacija.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<span id="crka"></span>
|
||
|
</body>
|
||
|
</html>
|