format with prettier

This commit is contained in:
Andreas Zweili 2021-01-18 21:54:10 +01:00
parent 4af49eac9e
commit 3dfa4512bc
2 changed files with 56 additions and 56 deletions

View File

@ -1,17 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Basics</title>
<link
href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<script src="https://unpkg.com/vue@next" defer></script>
<script src="app.js" defer></script>
</head>
<body>
<header>
<h1>Reactivity in Action</h1>
@ -26,4 +25,5 @@
<!-- 2) Watch for changes in "result" and reset the value to 0 after 5 seconds -->
</section>
</body>
</html>

View File

@ -3,7 +3,7 @@
}
html {
font-family: 'Jost', sans-serif;
font-family: "Jost", sans-serif;
}
body {