Skip to content

Instantly share code, notes, and snippets.

@BlackHole1
Created March 7, 2022 06:24
Show Gist options
  • Save BlackHole1/91a22621ac4f912d85235850d2eafdc6 to your computer and use it in GitHub Desktop.
Save BlackHole1/91a22621ac4f912d85235850d2eafdc6 to your computer and use it in GitHub Desktop.
Chrome: CoreText note: Client requested name ".NewYork-Regular"
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
@font-face {
font-family: system;
font-style: normal;
font-weight: 300;
src: local(".NewYork-Regular");
}
h1 {
font-family: "system";
}
</style>
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment