Advertisement
Guest User

homepage HTMl

a guest
Sep 19th, 2017
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5. New Perspectives on HTML5 and CSS3, 7th Edition
  6. Tutorial 3
  7. Case Problem 1
  8.  
  9. Slate & Pencil Home Page
  10. Author: Stoy Gates
  11. Date: 9/17/2017
  12.  
  13. Filename: sp_home.html
  14. -->
  15. <meta charset="utf-8" />
  16. <title>Slate &amp; Pencil Tutoring</title>
  17. <link href="sp_base.css" rel="stylesheet" />
  18. <link href="sp_styles.css" rel="stylesheet" />
  19. <link href="sp_layout.css" rel="stylesheet" />
  20. </head>
  21.  
  22. <body>
  23. <header class="row">
  24. <img src="sp_logo.png" alt="Slate & Pencil Tutoring" />
  25. <nav>
  26. <ul>
  27. <li><a href="#">Home</a></li>
  28. <li><a href="#">Our Tutors</a></li>
  29. <li><a href="#">Pricing</a></li>
  30. <li><a href="#">Testimonials</a></li>
  31. <li><a href="#">Your Account</a></li>
  32. <li><a href="#">Chat Online</a></li>
  33. </ul>
  34. </nav>
  35. </header>
  36. <nav class="horizontal">
  37. <ul class="row">
  38. <li><a href="#">Math</a></li>
  39. <li><a href="#">Science</a></li>
  40. <li><a href="#">English</a></li>
  41. <li><a href="#">Languages</a></li>
  42. <li><a href="#">History</a></li>
  43. <li><a href="#">Sociology</a></li>
  44. <li><a href="#">Art</a></li>
  45. <li><a href="#">Other</a></li>
  46. </ul>
  47. </nav>
  48. <ul id="topics" class="row">
  49. <li><img src="sp_topic1.png" alt="" />
  50. <p>Our tutors have advanced degrees, supplemented with real-world
  51. experience to help you meet your education goals.</p>
  52. </li>
  53. <li><img src="sp_topic2.png" alt="" />
  54. <p>Every session is just you and your instructor and
  55. there is always someone online to help you. 24/7.</p>
  56. </li>
  57. <li><img src="sp_topic3.png" alt="" />
  58. <p>We cover it all: From from Biochemistry to
  59. Beethoven. We can also help you prep for the ACT, SAT, and AP
  60. exams.</p>
  61. </li>
  62. <li><img src="sp_topic4.png" alt="" />
  63. <p>We keep our prices low. Sign up for one-time assistance or enroll
  64. for a full semester at greatly reduced rates.</p>
  65. </li>
  66. </ul>
  67. <hr />
  68. <ul id="comments">
  69. <li><img src="sp_student1.png" alt="" />
  70. <p>&ldquo;Thanks to <em>Slate &amp; Pencil</em> I passed AP Calculus
  71. with a 5.&rdquo;<br />
  72. <br />
  73. &mdash; Kevin, 12th Grade, Utah</p>
  74. </li>
  75. <li><img src="sp_student2.png" alt="" />
  76. <p>&ldquo;I use <em>Slate &amp; Pencil</em> all of the time to
  77. supplement my lectures and course notes.&rdquo;<br />
  78. <br />
  79. &mdash; Paul, 12th Grade, Texas</p>
  80. </li>
  81. <li><img src="sp_student3.png" alt="" />
  82. <p>&ldquo;I'm making the honor roll for the first time thanks to
  83. your wonderful service and help!&rdquo;<br />
  84. <br />
  85. &mdash; Lisa, 11th Grade, Florida</p>
  86. </li>
  87. <li><img src="sp_student4.png" alt="" />
  88. <p>&ldquo;Geometry is a breeze after working online with your great
  89. tutors and review materials.&rdquo;<br />
  90. <br />
  91. &mdash; Karen, 9th Grade, Nebraska</p>
  92. </li>
  93. <li><img src="sp_student5.png" alt="" />
  94. <p>&ldquo;I've seen a great improvement in my use of study time and
  95. I retain more than ever before.&rdquo;<br />
  96. <br />
  97. &mdash; Gianna, 10th Grade, Vermont</p>
  98. </li>
  99. <li><img src="sp_student6.png" alt="" />
  100. <p>&ldquo;After using <em>Slate &amp; Pencil</em>, my SAT and ACT
  101. scores went through the roof!!!&rdquo;<br />
  102. <br />
  103. &mdash; Todd, 11th Grade, Illinois</p>
  104. </li>
  105. </ul>
  106. <footer>
  107. Slate &amp; Pencil Tutoring; &copy; 2017 All Rights Reserved
  108. </footer>
  109. </body>
  110. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement