Theeaxe

My First HTML Website - Codecademy

Feb 6th, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <!-- I'm a comment. You won't actually see me on the web page.
  4.     You should write your header in the line below me! -->
  5.     <style>
  6.         body {
  7. background: url("https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/splash.jpg");
  8. background-size: cover;
  9. background-position: center center;
  10. background-repeat: no-repeat;
  11. background-attachment: fixed;
  12. color:white;
  13. font-family: Helvetica
  14. background-repeat: no-repeat;
  15. background-attachment: fixed;
  16. text-align: center;
  17. }
  18. p {font-size: 24px;
  19. }
  20. input[type="submit"] {
  21.     background: limegreen;
  22.     color: black;
  23.     border: 0;
  24.     padding: 12px;
  25.     font-size: 18px;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30.  
  31. <img src="http://www.theteachingtechies.com/wp-content/uploads/2014/01/Masen-TTT-Profile.jpg" height="250" width="300"
  32. <p>Hello there! This site will give you informtation about Masen, an inspired Architect/Game Designer/Programmer/Entrepreneur</p>
  33. <input type="email" placeholder="[email protected]">
  34. <input type="submit">
  35. </body>
Advertisement
Add Comment
Please, Sign In to add comment