Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>About Me</title>
  5. </head>
  6. <body>
  7. <header>
  8.  
  9. <!-- <h1 style="text-align: center;color: darkgray;background-color: lightblue">About Me</h1> -->
  10. </header>
  11. <main>
  12. <h1 style="color:red; text-align: center;background-color:lightgray;">Class 1 Lab</h1>
  13. <p style="color:lightgreen;background-color: darkslategray;">What's your name?</p>
  14. <p style="color:darkorange;background-color: lightgray;">How old are you?</p>
  15. <p style="color:lightpink;background-color: darkslateblue;">What is your hobby?</p>
  16. <p style="color:darkmagenta;background-color: whitesmoke;">Where are you from?</p>
  17. </main>
  18. <footer>
  19. </footer>
  20. <script>
  21.  
  22. var userName = prompt("What's your name?");
  23. console.log(userName);
  24. var userAge = prompt("How old are you?");
  25. console.log(userAge);
  26.  
  27. var userHobby = prompt("What is your hobby?");
  28. console.log(userHobby);
  29.  
  30. var userOrigin = prompt("Where are you from?");
  31. console.log(userOrigin);
  32.  
  33. var yearsDifference = userAge -26;
  34. Math.abs(yearsDifference);
  35. alert("Hello " + userName + "!" + " Nice to know that you are "+ userAge + " years old. There is only a " + yearsDifference + " Year gap between us! Fun!" + " It's also nice to know that you like "+userHobby + " I've always wanted to try that. " + "Youre from " + userOrigin + "? Interesting! My best friend's second cousin is from there too!");
  36.  
  37. </script>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement