Advertisement
daniel7

a

Mar 18th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Minecraft</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. </head>
  8.  
  9. <body>
  10. <div class="navbar">
  11. <img src="./img/logo.png">
  12. <ul>
  13. <li><a href="">Home</a></li>
  14. <li><a href="">Game</a></li>
  15. <li><a href="">Community</a></li>
  16. <li><a href="">Store</a></li>
  17. <li><a href="">Profile</a></li>
  18. <li><a href="">Help</a></li>
  19. </ul>
  20. <ul class="plavi">
  21. <li><a href="">Log in</a></li>
  22. <li class="small"> | </li>
  23. <li><a href="">Register</a></li>
  24. </ul>
  25. </div>
  26.  
  27. <div class="main">
  28. <iframe width="620" height="400" src="https://www.youtube.com/embed/MmB9b5njVbA" frameborder="0" allowfullscreen seamless></iframe>
  29. <p>Minecraft is a game about breaking and placing blocks. At first, people built structures to protect against nocturnal monsters, but as the game grew players worked together to create wonderful, imaginative things.</p>
  30. <p>It can also be about adventuring with friends or watching the sun rise over a blocky ocean. It’s pretty. Brave players battle terrible things in The Nether, which is more scary than pretty. You can also visit a land of mushrooms if it sounds more like your cup of tea.</p>
  31. <p>You can buy Minecraft for <a href="">PC/Mac here</a>, Minecraft:<a href=""> Xbox 360 Edition and Minecraft: Xbox One Edition on the XBLA Marketplace</a>, and Minecraft:<a href=""> Playstation 3 Edition, Minecraft: Playstation 4 Edition, and Minecraft: Playstation Vita Edition on the Playstation Network.</a> Minecraft: Pocket Edition is available for <a href="">iOS</a>, <a href="">Android, Windows Phone</a>, and <a href="">Amazon Kindle Fire.</a></p>
  32. <p>So far 18,863,111 people bought the PC/Mac version of the game. Phew.</p>
  33. </div>
  34.  
  35. <div class="aside" align="center">
  36. <img src="./img/animals.png">
  37. <br><br><br>
  38. <a href=""><img src="./img/buynow.png"></a>
  39. <p>19.95 EUR</p>
  40. <p>or <a href="">play the demo</p></a>
  41. <p>Already bought the game?<br>
  42. <a href="">Download it here</a></p>
  43. </div>
  44.  
  45. html {
  46. min-width: 100%;
  47. }
  48. body {
  49. padding: 0;
  50. margin: 0;
  51. background-image: url("./img/main.png");
  52. background-repeat: repeat;
  53. height: 100%;
  54. width: 100%;
  55. font-family: 'Helvetica Neue', sans-serif;
  56. }
  57. .navbar {
  58. background-image: url("./img/navbar.png");
  59. height: 64px;
  60. width: 100%;
  61. background-repeat: repeat-x;
  62. float: left;
  63. }
  64. .navbar img {
  65. padding-left: 180px;
  66. float: left;
  67. }
  68. .navbar ul {
  69. float: left;
  70. }
  71. .navbar ul li {
  72. float: left;
  73. }
  74. .navbar a {
  75. text-decoration: none;
  76. margin: 5px;
  77. color: white;
  78. font-weight: bold;
  79. font-size: 18px;
  80. }
  81. .navbar .plavi {
  82. padding-left: 180px;
  83. }
  84. .navbar .plavi a {
  85. color: #58ACFA;
  86. }
  87. .main {
  88. width: 620px;
  89. float: left;
  90. padding-left: 180px;
  91. padding-top: 15px;
  92. color: white;
  93. font-size: 13px;
  94. }
  95. .main p {
  96. line-height: 160%;
  97. }
  98. .main a {
  99. color: #58ACFA;
  100. text-decoration: none;
  101. }
  102. .aside {
  103. color: white;
  104. float: left;
  105. padding-left: 80px;
  106. padding-top: 15px;
  107. }
  108. .aside a {
  109. text-decoration: none;
  110. color: #58ACFA;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement