PadApp/html/index.html

34 lines
808 B
HTML
Raw Normal View History

2022-12-07 21:59:01 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@import url(css/comfortaa.css);
html,body{
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
#stear{
height: 100%;
width: 100%;
top: 0;
left:0;
}
*{
font-family: 'Comfortaa', cursive;
2022-12-19 23:03:59 +01:00
font-size: 1.25rem;
transition: background-color 1000ms linear, fill 1000ms linear;
2022-12-07 21:59:01 +01:00
}
</style>
</head>
<body>
<div id="stear"></div>
<script src="index.js"></script>
</body>
</html>