We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c992d commit f889298Copy full SHA for f889298
css-theme/src/app.ts
@@ -7,3 +7,7 @@ WebFont.load({
7
],
8
},
9
});
10
+
11
+const hello: HTMLHeadElement = document.createElement('h1');
12
+hello.textContent = 'Hola!';
13
+document.body.appendChild(hello);
css-theme/src/index.html
@@ -9,9 +9,10 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./base.scss">
<link rel="stylesheet" href="./main.scss">
+ <script defer src="./app.ts"></script>
<title>css theme</title>
14
</head>
15
<body>
-<script src="./app.ts"></script>
16
17
</body>
18
</html>
0 commit comments