htmls/js/css les bases:

les variable js
les boucles
html element + css
This commit is contained in:
2025-10-24 17:22:43 +02:00
commit d675b15f96
3 changed files with 154 additions and 0 deletions

23
bases-js/styles.css Normal file
View File

@@ -0,0 +1,23 @@
body{
background-color: aqua;
}
h1{
font-weight: 900;
font-size: 240px;
}
div.balle{
width: 20px;
height:20px;
border-radius: 10px;
background-color: black;
}
div.boule{
position: absolute;
width: 10px;
height:10px;
border-radius: 10px;
background-color: red;
}