feat: added 03_dom

This commit is contained in:
Philippe Torrel
2026-07-13 10:38:22 +02:00
parent 6292cabfee
commit e0bd3930d9
134 changed files with 21947 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Progressbar</title>
<script src="../../../lib/dom_helper.js" defer></script>
<script src="buy_button.js" defer></script>
</head>
<body>
<button id="buy">Buy!</button>
</body>
</html>

View File

@@ -0,0 +1,3 @@
'use strict';
// Implement your code here

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -0,0 +1,22 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Running light</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="running_light.js" defer></script>
<script src="../../../lib/dom_helper.js"></script>
</head>
<body>
<img src="light_on.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
<img src="light_off.png" alt="lightbulb" />
</body>
</html>

View File

@@ -0,0 +1,3 @@
'use strict';
// Implement your code here