Labyrinthe
non supportée !
non supportée !
CE1D Sciences 2ème partie Temps écoulé : 0:00:00:00
Ceci est un titre Ceci est un paragraphe. Le code expliqué : <!DOCTYPE html> <html> <head> <style> h1 { color: blue; font-family: verdana; font-size: 300%; } p { color: red; font-family: courier; font-size: 160%; } </style> … Continued
Ceci est un titre Ceci est un paragraphe. Le code expliqué : <!DOCTYPE html> <html> <head> <style> body {background-color: lightgrey;} h1 {color: blue;} p {color: green;} </style> <head> <body> <h1>Ceci est un titre</h1> <p>Ceci est un … Continued
Your browser does not support the HTML5 canvas tag. Le code expliqué : <!DOCTYPE html> <html> <body> <canvas id= »myCanvas » width= »300″ height= »100″ style= »border:1px solid #d3d3d3; »> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c … Continued
L’arrière-plan est rouge L’arrière-plan est orange L’arrière-plan est jaune L’arrière-plan est bleu L’arrière-plan est cyan L’arrière-plan utilise les codes rgb (255,0,0) L’arrière-plan utilise les codes rgb (0,255,0) L’arrière-plan utilise les codes rgb (0,0,255) L’arrière-plan utilise les codes rgb … Continued
Titre centré Ceci est un paragraphe centré. Le code expliqué : <!DOCTYPE html> <html> <body> <h1 style= »text-align:center; »>Titre centré</h1> <p style= »text-align:center; »>Ceci est un paragraphe centré.</p> </body> </html>
Ceci est un titre Ceci est un paragraphe. Le code expliqué : <!DOCTYPE html> <html> <body> <h1 style= »font-size:300%; »>Ceci est un titre</h1> <p style= »font-size:160%; »>Ceci est un paragraphe.</p> </body> </html>
Ceci est un titre Ceci est un paragraphe. Le code expliqué : <!DOCTYPE html> <html> <body> <h1 style= »font-family:verdana; »>Ceci est un titre</h1> <p style= »font-family:courier; »>Ceci est un paragraphe.</p> </body> </html>
Ceci est un titre Ceci est un paragraphe. Le code expliqué : <!DOCTYPE html> <html> <body style= »background-color:lightgrey; »> <h1>Ceci est un titre</h1> <p>Ceci est un paragraphe.</p> </body> </html>