This commit is contained in:
2025-05-01 14:37:08 -06:00
parent b6008d462e
commit 5cd4571a92
91 changed files with 1009 additions and 36 deletions
+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Day 21</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<h2>Hello cruel world!</h2>
</body>
</html>
+4
View File
@@ -0,0 +1,4 @@
document.addEventListener('DOMContentLoaded', function() {
let h2 = document.querySelector('h2');
h2.innerText = 'The DOM is Magical';
});
+4
View File
@@ -0,0 +1,4 @@
body {
background-color: indigo;
color: white;
}