Advertisement
rodolpheg

Untitled

Feb 2nd, 2021
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Ma page</title>
  5. <meta charset="UTF-8">
  6. <style>
  7. /* Intructions CSS ici*/
  8. </style>
  9. </head>
  10. <body>
  11. <script>
  12. prenom = "Rodolphe"
  13. nom = "Gonzalès"
  14. activité = "cours de carto en ligne"
  15. duree = 3 // en heures
  16.  
  17. phrase = "Je m'appelle " + prenom + " " + nom + ", je participe au " + activité + " qui dure " + duree + "h."
  18. console.log(phrase)
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement