fix conflicts

This commit is contained in:
brightboost
2021-11-24 19:50:37 +01:00
263 changed files with 3268 additions and 55 deletions
+11
View File
@@ -0,0 +1,11 @@
<html>
<body>
<div id="divvy" onmouseup="changeColor()" style="width: 100px; height: 100px; background-color: pink;">
<script>
function changeColor() {
document.getElementById("divvy").style.backgroundColor = "blue";
}
</script>
</body>
</html>