Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en" xmlns="http://www.w3.org/1999/xhtml%22%3E">
  4. <head>
  5. <meta charset="utf-8" />
  6. <link rel="stylesheet" href="styles.css">
  7. <link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
  8. <link href='https://fonts.googleapis.com/css?family=Athiti' rel='stylesheet'>
  9. <title>Creativity without frontiers</title>
  10. <header>
  11. <a href="Homepage.html" class="visited"><img src="site.png" class="img"></a>
  12.  
  13. </header>
  14. </head>
  15. <body>
  16. <h1 class="titleheader" font><a href="Homepage.html" class="visited"> CREATIVITY WITHOUT FRONTIERS </a></h1>
  17. <br>
  18. <div class="row">
  19. <div class="column">
  20.  
  21. <p><a href="Homepage.html" class="visited">Home</a></p>
  22.  
  23. </div>
  24. <div class="column">
  25.  
  26. <p><a href="Activities.html" class="visited">Activities</a></p>
  27.  
  28. </div>
  29. <div class="column">
  30.  
  31. <p><a href="Materials.html" class="visited">Materials</a></p>
  32.  
  33. </div>
  34. <div class="column">
  35.  
  36. <p><a href="PhotosVideos.html" class="visited">Photos & Videos</a></p>
  37.  
  38. </div>
  39. </div>
  40.  
  41.  
  42.  
  43. </body>
  44. </html>
  45.  
  46.  
  47.  
  48. CSS:
  49.  
  50.  
  51.  
  52. .img {
  53. display: block;
  54. margin-left: auto;
  55. margin-right: auto;
  56. width: 40%;
  57. margin-top: 1%;
  58. }
  59.  
  60. .titleheader {
  61. display: block;
  62. margin-left: 20%;
  63. margin-right: 20%;
  64. color: darkblue;
  65. font-family: 'Raleway';
  66. font-size:40px;
  67. text-align:center;
  68. letter-spacing:3px;
  69. font-weight:100;
  70. }
  71.  
  72.  
  73. ul#menu li {
  74. list-style-type: none;
  75. display: inline;
  76.  
  77. }
  78. .column {
  79. margin-left: 3.5vw;
  80. margin-right: 3.5vw;
  81. float: left;
  82. font-family: 'Athiti';
  83. color:mediumblue;
  84. }
  85.  
  86. .row:after {
  87. content: "";
  88. display: table;
  89. clear: both;
  90. }
  91.  
  92. .row {
  93. margin-left: 25%;
  94. margin-right: 25%;
  95. vertical-align:middle;
  96.  
  97.  
  98. }
  99.  
  100. a, a:visited, a:hover, a:active {
  101. color: inherit;
  102. text-decoration: none;
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement