31 lines
994 B
HTML
Executable file
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>
|
|
|
|
|
|
|