Skip to content

Commit f889298

Browse files
committed
pam anderson is going to love me. (C) whatthecommit.com
1 parent 24c992d commit f889298

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

css-theme/src/app.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ WebFont.load({
77
],
88
},
99
});
10+
11+
const hello: HTMLHeadElement = document.createElement('h1');
12+
hello.textContent = 'Hola!';
13+
document.body.appendChild(hello);

css-theme/src/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<meta http-equiv="X-UA-Compatible" content="ie=edge">
1010
<link rel="stylesheet" href="./base.scss">
1111
<link rel="stylesheet" href="./main.scss">
12+
<script defer src="./app.ts"></script>
1213
<title>css theme</title>
1314
</head>
1415
<body>
15-
<script src="./app.ts"></script>
16+
1617
</body>
1718
</html>

0 commit comments

Comments
 (0)