format with prettier

This commit is contained in:
Andreas Zweili 2021-01-18 22:28:32 +01:00
parent 7e610fac01
commit 99be089ede
1 changed files with 12 additions and 12 deletions

View File

@ -1,25 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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>
</head>
<body>
<header>
<h1>Vue Dynamic Styling</h1>
<h1>Vue Dynamic Styling</h1>
</header>
<section id="styling">
<div class="demo"></div>
<div class="demo"></div>
<div class="demo"></div>
<div class="demo"></div>
<div class="demo"></div>
<div class="demo"></div>
</section>
</body>
</body>
</html>