Copy link to clipboard
Copied
I am trying to use an Adobe Font for a website. The generated embed code looks something like this
```
<link rel="stylesheet" href="https://use.typekit.net/<projectId>.css">
```
When building in production mode with nextjs's latest version ( ^13.0.3 ), it replaces the link tag in the header with a style tag containing the content of https://use.typekit.net/<projectId>.css
like this
```
<style data-href="https://use.typekit.net/<projectId>.css">
... contents of https://use.typekit.net/<projectId>.css
</style>
```
Is it permitted to copy & paste the contents of the CSS file instead of having a link to the CSS file?
Thank you.
Copy link to clipboard
Copied
Hello,
It is not permitted to copy the contents of the CSS file. The embed code has to link to the CSS file on the Adobe Fonts / typekit.net server. Copying the file to your own server would be a violation of the terms of use.
Best regards,
Molly