html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- Question by RAHUL JAISWAL
https://www.sololearn.com/Discuss/1012755/change-css-font
CHANGE CSS FONT
How do I change the font in the middle of the game?
-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p id=elm class=first>Test</p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
.first {
font-size: 20px;
}
.second {
font-size: 32px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
function swap() {
let elm = document.getElementById("elm");
elm.classList.remove("first");
elm.classList.add("second");
}
setTimeout(swap, 3000);
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run