Advertisement
Guest User

mysite2

a guest
Nov 4th, 2013
2,329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>johnnyt.com</title>
  5. <style>
  6. #div
  7. {
  8. margin-left:100px;
  9. margin-right:100px;
  10. }
  11.  
  12. a
  13. {
  14. text-align:center;
  15. color:#ffebcd;
  16. text-decoration:none;
  17. font-weight:bold;
  18. }
  19. #menu1 {
  20. position: absolute;
  21. top:100px;
  22. left:143px;
  23. border:1px;
  24. border-radius:8px;
  25. font-weight:bold;
  26. padding-left:15px;
  27. padding-right:15px;
  28. padding-top:5px;
  29. background:url("http://i1317.photobucket.com/albums/t632/dreendiz57/2013-11-04-08-06-12-1-1_zpsf3ea0954.jpg");
  30. background-repeat:no-repeat;
  31. }
  32.  
  33. #menu2
  34. {
  35. position:absolute;
  36. top:100px;
  37. left:250px;
  38. border:1px;
  39. border-radius:8px;
  40. font-weight:bold;
  41. padding-top:5px;
  42. padding-left:15px;
  43. padding-right:15px;
  44. background:url("http://i1317.photobucket.com/albums/t632/dreendiz57/2013-11-04-08-06-12-1-1_zpsf3ea0954.jpg");
  45. background-repeat:no-repeat;
  46. }
  47.  
  48. #menu3
  49. {
  50. position:absolute;
  51. top:100px;
  52. left:400px;
  53. border:1px;
  54. border-radius:8px;
  55. font-weight:bold;
  56. padding-top:5px;
  57. padding-left:15px;
  58. padding-right:15px;
  59. background:url("http://i1317.photobucket.com/albums/t632/dreendiz57/2013-11-04-08-06-12-1-1_zpsf3ea0954.jpg");
  60. background-repeat:no-repeat;
  61. }
  62. #item {
  63. width:auto;
  64. height:auto;
  65. display:inline;
  66. padding:1px;
  67. }
  68.  
  69. #hr
  70. {
  71. background-color:#C80000;
  72. color:#C80000;
  73. -webkit-transform:rotate(90deg);
  74. position:absolute;
  75. left:130px;
  76. border:2px;
  77. }
  78. </style>
  79. </head>
  80. <body>
  81. <hr id="hr">
  82. <div>
  83. <div id="item"><a href="home/" id="menu1">Home</a>
  84. </div>
  85. <div id="item"><a href="contact/" id="menu2">Contact me</a>
  86. </div>
  87. <div id="item"><a href="about/" id="menu3">About me</a>
  88. </div>
  89. </div>
  90. </body>
  91. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement