Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link href="style.css" rel="stylesheet">
  6. </head>
  7. <body>
  8. <hr size="5px" color="blue">
  9. <img id="slika1" src="logo.png"><h1>Coworking<sup>an innovative environment</sup></h1>
  10. <div class="div1">
  11. <ul>
  12. <li><a>Home</a></li>
  13. <li><a>About</a></li>
  14. <li><a>Community</a></li>
  15. <li><a>Membershit</a></li>
  16. </ul>
  17. </div>
  18. <div class="mainSection">
  19. <div class="div2">
  20. <h3>What's coworking</h3>
  21. <p>Coworking is a style of work that involves a shared workplace,
  22. often an office, and independent activity. Unlike in a typical
  23. office, those coworking are usually not employed by the same
  24. organization. It is attractive to work-at-home professionals,
  25. independent contractors, or people who travel frequently.</p>
  26. <p>Coworking is a social gathering of a group of people who are still
  27. working independently, but who share values, and who are interested
  28. in the synergy that can happen from working with people who value
  29. working in the same place alongside each other.</p>
  30. <p>Coworking offers a solution to the problem of isolation that many
  31. freelancers experience while working at home, while at the same time
  32. letting them escape the distractions of home.</p>
  33. </div>
  34. <div class="div3">
  35. <h3>Location</h3>
  36. <ul class="ul1">
  37. <li><a href="">London</a></li>
  38. <li><a href="">New York</a></li>
  39. <li><a href="">San Francisco</a></li>
  40. <li><a href="">Hong Kong</a></li>
  41. <li><a href="">Amsterdam</a></li>
  42. <li><a href="">Sao Paolo</a></li>
  43. </ul>
  44. </div>
  45. </div>
  46. </body>
  47. </html>
  48. #slika1
  49. {
  50. vertical-align: middle;
  51. line-height: 100px;
  52. display: inline-block;
  53. width: 70px;
  54. height: 70px;
  55. }
  56. #slika1 , h1
  57. {
  58. vertical-align: middle;
  59. line-height: 100px;
  60. display: inline-block;
  61. height: 70px;
  62. }
  63. .div1
  64. {
  65. background-color:darkblue;
  66.  
  67. }
  68. .div1 > ul li
  69. {
  70. color: white;
  71. display: inline-block;
  72. width: 20%;
  73. border: 2px solid white;
  74. padding: 8px;
  75. margin: 5px;
  76. text-align: center;
  77.  
  78. }
  79. .mainSection {
  80. height: 60%;
  81. width: 100%;
  82. display: block;
  83. }
  84.  
  85. .div2
  86. {
  87.  
  88. float: left;
  89. display:block;
  90.  
  91. width: 65%;
  92.  
  93. }
  94. .div3
  95. {
  96.  
  97. display:block;
  98. width: 34%;
  99. height: 268px;
  100. background: lightgreen;
  101. float: right;
  102. border-left: 2px dashed darkblue;
  103. }
  104.  
  105. .div3 h3 {
  106. margin-left: 20px;
  107. }
  108. .ul1 li a
  109. {
  110. text-decoration: none;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement