ed.brz9.dev/proj/fonts/index.html

34 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fonts</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://file.brz9.dev/cdn/fonts/brz9-v2.2/style.css">
<link rel="stylesheet" href="https://file.brz9.dev/cdn/fonts/base/all.css">
</head>
<body>
<div id="root">
<main>
<h3>Fonts</h3>
<input v-model="testText" placeholder="Your text"/>
<nav class="font-nav">
<span class="style-pick" v-on:click="updateSelectedTags('graphic')">Graphic</span>
</nav>
<fontdemo v-for="font in this.selection" :typeface="font">{{ testText }}</fontdemo>
<h4>All the fonts</h4>
<fontdemo v-for="font in this.typefaceList" :typeface="font">{{ testText }}</fontdemo>
</main>
</div>
</body>
<script src="https://ed.brz9.dev/assets/js/vue.min.js"></script>
<script src="fonts.js"></script>
</html>