Utilisation de strokeText

posted in: canvas | 0

    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

Mettre en couleur l’arrière-plan

posted in: html | 0

    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

Centrer un titre / paragraphe

posted in: html | 0

    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>

Choisir la taille de la police

posted in: html | 0

    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>

Choisir la police

posted in: html | 0

    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>

Faire un arrière-plan en couleur

posted in: html | 0

    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>