Add files via upload

This commit is contained in:
Jyotirmoy Bandyopadhayaya 2020-12-02 11:25:02 +05:30 committed by GitHub
parent f4b91468b0
commit ddd306a513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,39 @@
<html>
<head>
<title>You converted a font!</title>
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<style>
.thankyou, .notes {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
}
.sample {
font-family: 'BlackberryJamPersonalUse';
font-size: 24px;
border: 1px solid #ddd;
display: inline-block;
padding: 10px;
}
</style>
</head>
<body>
<p class="thankyou">
Thank you for using <a href="http://www.font-converter.net">font-converter.net</a>!<br />
We really appreciate you for using our little service. We hope we can help you with our services again soon.
<br /><br />
And there it is, your lovely converted web font:
</p>
<p class="sample">
The quick brown fox jumps over the lazy dog
</p>
<p class="notes">
<b>CSS Stylesheet:</b> You'll find the stylesheet in this folder (if selected). The file is called <code>style.css</code><br />
<b>web fonts:</b> You'll find all converted fonts in a subdirectory called <code>fonts</code> in this folger<br />
</p>
</body>
</html>

View File

@ -0,0 +1,13 @@
/* font converted using font-converter.net. thank you! */
@font-face {
font-family: "BlackberryJamPersonalUse";
src: url("./fonts/BlackberryJamPersonalUse-rXOB.eot"); /* IE9 Compat Modes */
src: url("./fonts/BlackberryJamPersonalUse-rXOB.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
url("./fonts/BlackberryJamPersonalUse-rXOB.otf") format("opentype"), /* Open Type Font */
url("./fonts/BlackberryJamPersonalUse-rXOB.svg") format("svg"), /* Legacy iOS */
url("./fonts/BlackberryJamPersonalUse-rXOB.ttf") format("truetype"), /* Safari, Android, iOS */
url("./fonts/BlackberryJamPersonalUse-rXOB.woff") format("woff"), /* Modern Browsers */
url("./fonts/BlackberryJamPersonalUse-rXOB.woff2") format("woff2"); /* Modern Browsers */
font-weight: normal;
font-style: normal;
}