Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>MadLib Game</title>
  6.  
  7. <script>
  8. var game = "Fortnite";
  9. var adjective1 = "awesome";
  10. var adjective2 = "strange";
  11. var game2 = "PUBG";
  12. var pluralDrinks = "frappacinos";
  13. var place = "paradise";
  14. var pluralAnimal = "Dogs";
  15. var game3 = "Roblox";
  16. var fashionBrand = "Supreme";
  17. var gamingConsole = "Playstation";
  18.  
  19. var story = game + " is " + adjective1 + " and is super " + adjective2 +
  20. ". " + game2 + " sucks. Legendary weapons are rare and " +
  21. pluralDrinks + " are juicy liquids. " + place + " is deserted " +
  22. "and cool. " + pluralAnimal + " are furballs. " + game3 + " is blocky " +
  23. "and has guns. " + fashionBrand + " stuff " +
  24. "always looks like overpriced + " + gamingConsole + ".";
  25. </script>
  26. </head>
  27.  
  28. <body>
  29.  
  30.  
  31. </body>
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement