@third774/google-font
Version:
A web component for loading fonts from Google Fonts
26 lines (25 loc) • 650 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
p {
font-size: 3rem;
}
</style>
</head>
<body>
<google-font family="Acme">
<p>Sphynx of Black Quartz, judge my vow.</p>
</google-font>
<google-font family="Inter">
<p>Sphynx of Black Quartz, judge my vow.</p>
</google-font>
<google-font family="Amatic SC">
<p>Sphynx of Black Quartz, judge my vow.</p>
</google-font>
<script type="module" src="./src/index.ts"></script>
</body>
</html>