You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2021. It is now read-only.
Create a CSS file (css file should be open in brackets)
Install the EWF extension if you haven't already
add p { font-family: and browse for ewf and select a font then close out the rule.
add div { font-family: and browser for a different font then close out the rule.
(note: for both rules for completeness i add sans-serif but that should be default for body)
create index.html and fill it out with stuff
add a <p> tag in the body with some text
add a <div> tag in the body with some text
click on the EWF icon on the toolbar and grab the js code from the edit box
insert the js code into your head of index.html
Launch live view or open index.html in a browser.
==> The <div> tag is unstyled.
if you look at the js code that the ewf extension gives you -- it only gives you the code to download the 1st font it found in the css.
The only way to get the code for the other fonts is to comment out the first rule and get another js script to download. this is a nightmare if you use a lot of fonts.
Note: we shouldn't need more than 1 code. There is a way to specify all of the fonts to download on the url but need to work that out with the typekit guys. Reflow does this currently so we could look at that code to see what they are doing.
p { font-family:and browse for ewf and select a font then close out the rule.div { font-family:and browser for a different font then close out the rule.(note: for both rules for completeness i add
sans-serifbut that should be default for body)<p>tag in the body with some text<div>tag in the body with some textindex.htmlindex.htmlin a browser.==> The
<div>tag is unstyled.if you look at the js code that the ewf extension gives you -- it only gives you the code to download the 1st font it found in the css.
The only way to get the code for the other fonts is to comment out the first rule and get another js script to download. this is a nightmare if you use a lot of fonts.
Note: we shouldn't need more than 1 code. There is a way to specify all of the fonts to download on the url but need to work that out with the typekit guys. Reflow does this currently so we could look at that code to see what they are doing.