PadApp/html/css/index.html
jusax23 5f0762ff67
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
init
2022-12-07 21:59:01 +01:00

31 lines
994 B
HTML
Executable file

<!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>Font Licenses</title>
<style>
@import url('/fonts/comfortaa.css');
@import url('/fonts/roboto.css');
.comfortaa{
font-family: 'Comfortaa', cursive;
}
.roboto{
font-family: 'Roboto', Fallback, sans-serif;
}
</style>
</head>
<body>
<h3 class="roboto">Roboto:</h3>
<p>Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> by google. <a href="roboto/LICENSE.txt">LICENSE.txt</a></p>
<h3 class="comfortaa">Comfortaa:</h3>
<p class="comfortaa">Licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License, 1.1</a> by google. <a href="comfortaa/OFL.txt">OFL.txt</a></p>
</body>
</html>