Noteworthy is a system font on macOS and iOS (stored at /System/Library/Fonts/Noteworthy.ttc
) so it is simply referenced using the font-family
name. You may instead want to move to using a webfont variant; it looks like it can be freely downloaded from sites like cufon.
If you grab the “@font-face Kit” then the steps to add it into Hype as a custom font would be:
- Drag the “Noteworthy-Lt.woff” into the Resources Library
- In the Resources Library, click the “+” and choose “Add Font…”
- Change the top popup to “Custom CSS”
- Set the Display Name to
Noteworthy Light
- Set the CSS Font Family to
'Noteworthy Light', Noteworthy, sans-serif;
- In the Embedded Head HTML field, paste this code between them:
<style>
@font-face {
font-family: 'Noteworthy Light';
font-style: normal;
font-weight: normal;
src: local('Noteworthy Light'), url('${resourcesFolderName}/Noteworthy-Lt.woff') format('woff');
}
</style>
I assume then this will work on Android.