Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
  6. <script type='text/javascript' src='http://www.x3dom.org/download/x3dom.js'> </script>
  7. <link rel="stylesheet" type="text/css" href="navbar.css">
  8. <script src="navbar2.js" type="text/javascript"></script>
  9. <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
  10. <style>
  11. body{
  12. background-color: black;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="w3-sidebar w3-bar-block w3-green" style="width:25%;right:0;">
  18. <h3 class="w3-bar-item w3-yellow">Space Missions</h3>
  19. <input type="text" >
  20. <button>Search</button>
  21. <a href="#" class="w3-bar-item w3-button w3-hover-red">Mission 1</a>
  22. <a href="#" class="w3-bar-item w3-button w3-hover-red">Mission 2</a>
  23. <a href="#" class="w3-bar-item w3-button w3-hover-red">Mission 3</a>
  24. <a href="#" class="w3-bar-item w3-button w3-hover-red">Apollo program</a>
  25. <a href="#" class="w3-bar-item w3-button w3-hover-red">Skylab</a>
  26. <a href="#" class="w3-bar-item w3-button w3-hover-red">Mars2020 Rover</a>
  27. <a href="#" class="w3-bar-item w3-button w3-hover-red">Hubble Space Telescope</a>
  28. </div>
  29.  
  30. <X3D xmlns="http://www.web3d.org/specifications/x3d-namespace" showStat="false"
  31. showLog="false" x="0px" y="0px" width="800px" height="600px">
  32. <Scene>
  33. <background DEF='bgnd' transparency='0' skyColor='0.0 0.0 0.0'>
  34. </background>
  35. <Transform id="theEarth" translation="3 0 0">
  36. <Shape>
  37. <Appearance>
  38. <ImageTexture url='3.jpg'/>
  39. </Appearance>
  40. <Sphere radius='0.4'/>
  41. </Shape>
  42. </Transform>
  43. <Viewpoint fieldOfView="0.785398" position="6 5.5 6.5"
  44. orientation="1 -1 0 -0.785" description=""/>
  45. </Scene>
  46. </X3D>
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement