37 lines
1.1 KiB
HTML
37 lines
1.1 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 class="font-input" v-model="testText" placeholder="Your text"/>
|
|
<nav class="font-nav">
|
|
<span class="style-pick" v-on:click="updateSelectedTags('graphic')">Graphic</span>
|
|
</nav>
|
|
|
|
<h4>All the fonts</h4>
|
|
<div class="font-container">
|
|
<div class="font-content">
|
|
<fontdemo v-for="font in this.selection" :typeface="font">{{ testText }}</fontdemo>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
<script src="https://ed.brz9.dev/assets/js/vue.min.js"></script>
|
|
<script src="fonts.js"></script>
|
|
</html> |