Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. HTML
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5.  
  6. <head>
  7. <link rel="stylesheet" type="text/css" href="main.css">
  8. <title>Wilmington Academy</title>
  9. </head>
  10.  
  11.  
  12.  
  13. <body>
  14.  
  15. <header>
  16. <div class="container1">
  17. <img class="logo" src="AcademyLogo.png">
  18. <nav>
  19. <ul class="nav">
  20. <li><a class="indexheader" href="index.html">Wilmington Academy</a></li>
  21. <li><a href="about.html">Year Groups</a></li>
  22. </ul>
  23. </nav>
  24. </div>
  25. </header>
  26.  
  27.  
  28. <div class="paragraph1" style="text-align: left; width:40%;"><h2>ABOUT US</h2>Wilmington Aademy is a school based in Kent. People come here for one of the best non grammar schools in Kent, Wilmington Academy is bound to get your grades up. Parents send there children here for the best possible education they can get if whether or not they pass there 11plus, </p>
  29. <img src="picture1.jpg">
  30. </div>
  31.  
  32. <div class="paragraph2" style="text-align: right; width:40%; ">
  33. <h2>OFSTED RATINGS</h2>
  34. <p>Ofsted rated our school good, we can tell that they mean this because in their response they said this "You and your leadership team have maintained a good quality of education since
  35. the last inspection. You are ambitious and passionate about pupils being provided
  36. with the best educational opportunities." you can check out the whole review on the school website.</p>
  37. <img src="ofsted.png">
  38. </div>
  39.  
  40. <footer class="footer-basic-centered">
  41.  
  42.  
  43.  
  44.  
  45. <p class="footer-company-name">Wilmington Academy &copy; 2015</p>
  46.  
  47. </footer>
  48.  
  49.  
  50. </body>
  51. </html>
  52.  
  53.  
  54. CSS
  55.  
  56. .title {
  57. color: blue;
  58. }
  59.  
  60. body {
  61. margin:0;
  62. }
  63. header {
  64. width:100%;
  65. height:100px;
  66. background:#191d26;
  67. box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 3px;
  68. }
  69. .container1 {
  70. width:900px;
  71. margin:0 auto;
  72. }
  73.  
  74. .HeaderBackground {
  75. border-bottom:1px solid #ccc;
  76. }
  77.  
  78. header .logo {
  79. width:150px;
  80. margin:0 auto;
  81. margin-top:10px;
  82. float:left;
  83. -webkit-transition: all 0.3s ease;
  84. -moz-transition: all 0.3s ease;
  85. -ms-transition: all 0.3s ease;
  86. -o-transition: all 0.3s ease;
  87. transition: all 0.3s ease;
  88. }
  89. .nav {
  90. list-style-type:none;
  91. float:right;
  92. margin-top:40px;
  93. }
  94. .nav li {
  95. float:left;
  96. }
  97. .nav li a {
  98. background:#191d26;
  99. padding:10px 20px;
  100. margin-right:10px;
  101. border-radius:3px;
  102. text-decoration:none;
  103. color:#fff;
  104. -webkit-transition: all 0.3s ease;
  105. -moz-transition: all 0.3s ease;
  106. -ms-transition: all 0.3s ease;
  107. -o-transition: all 0.3s ease;
  108. transition: all 0.3s ease;
  109. font-family: 'Roboto', sans-serif;
  110. text-transform:uppercase;
  111. font-size:12px;
  112. }
  113. .nav li a:hover{
  114. color:#24b1be;
  115. border-bottom: 2px #5da044 solid;
  116. -webkit-transition: all 0.5s ease;
  117. -moz-transition: all 0.5s ease;
  118. -ms-transition: all 0.5s ease;
  119. -o-transition: all 0.5s ease;
  120. transition: all 0.5s ease;
  121. }
  122.  
  123.  
  124. .paragraph1 {
  125. width:100%;
  126. overflow: hidden;
  127. padding: 0 0 0 10px;
  128. }
  129.  
  130. .paragraph1 p {
  131. font-size: 15px;
  132. font-family: 'Roboto', sans-serif;
  133. float: left;
  134. }
  135.  
  136.  
  137. .footer-basic-centered{
  138. background-color: #191d26;
  139. box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  140. box-sizing: border-box;
  141. width: 100%;
  142. text-align: center;
  143. font: normal 18px sans-serif;
  144.  
  145. padding: 45px;
  146. }
  147.  
  148. .footer-basic-centered .footer-company-name{
  149. color: #8f9296;
  150. font-size: 14px;
  151. margin: 0;
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement