Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. <!DOCTYPTE HTML>
  2. <html>
  3. <body>
  4.  
  5. <link rel="stylesheet" type="text/css" href="assets/style.css">
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
  7.  
  8.  
  9. <div class="boxy">
  10. <div class="imagey">
  11. <img src="images/pg1.png" usemap="map" class="pollo">
  12. <map name="map" class="bebop">
  13. <!-- #$-:Image map file created by GIMP Image Map plug-in -->
  14. <!-- #$-:GIMP Image Map plug-in by Maurits Rijk -->
  15. <!-- #$-:Please do not edit lines starting with "#$" -->
  16. <!-- #$VERSION:2.3 -->
  17. <!-- #$AUTHOR:NOTHING TO SEE HERE-->
  18. <area shape="rect" coords="445,451,1120,471" target="image_tag" href="nohref" />
  19. <area shape="rect" coords="446,535,655,570" target="chapter_header" href="#chap_head"/>
  20. <area shape="rect" coords="28,107,1292,434" target="image" href="nohref" alt="Woodcut of men at work."/>
  21. <area shape="rect" coords="444,591,1189,748" target="paragraph" href="#par1"/>
  22. <area shape="rect" coords="117,689,390,815" target="teacher_question" href="#understand" alt="whoasked"/>
  23. <area shape="rect" coords="127,1147,391,1249" target="teacher_question" id="teach2"href="nohref" />
  24. <area shape="rect" coords="446,750,1189,1046" target="paragraph" href="#par2"/>
  25. <area shape="rect" coords="447,1047,1189,1176" target="paragraph" href="#par3" />
  26. <area shape="rect" coords="447,1177,1189,1442" href="#par4" />
  27. <area shape="rect" coords="172,1409,220,1440" target="page_num" href="#pagenum" />
  28. </img>
  29. </div>
  30.  
  31. <div class="transcript">
  32. <p class="image tag"><span>The way meat was packaged and sold was investigated by muckrakers.</span></p>
  33. <p class="chapter_header" id="chap_head"><span>MUCKRAKERS</span></p>
  34. <p class="paragraph" id="par1">Magazines and books began to tell about the problems of American society. The people who wrote such articles and books were called muckrakers. The muckrakers pointed out dishonest practices in politics and business. They wrote about working conditions in factories and about overcrowding in tenements.</p>
  35. <p class="teacher_question" id="whoasked"><span>Ask students to find the <br> derivation of the term <br> <i>muckraker.</i>. Who coined the <br> word? Was it used in a <br>complimentary sense?</span></p>
  36. <p class="teacher_question" id="understand">Students should understand <br> that writers can play an<br> important role in bringing <br> about change.</p>
  37. <p class="paragraph" id="par2">One of the most famous muckraking magazines was<br><span name="prop_title">McClure's.</span>It hired reporters to look into all kinds of problems.<br>One muckraker article, "History of the Standard Oil Company,"<br>was written by Ida Tarbell. She had spent six years studying this<br>big oil company. She described how it received special favors<br>from other businesses and from politicians. Another series of<br>articles in <span name="prop_title">McClure's</span>told about dishonesty in city' politics. "The<br>Shame of the Cities," written by Lincoln Steffens, led many citizens to demand reform in local government.</p>
  38. <p class="paragraph" id="par3">A number of magazines started printing muckraking articles.<br> Some reporters told about dishonest practices in the stock market.<br> Others showed how labor bosses stole money that worksers paid<br> to unions.</p>
  39. <p class="paragraph" id="par4">The muckrakers also wrote books. In <span name="prop_title">The Jungle</span>(1906) Upton<br> Sinclair described terrible conditions in the meat-packing in-<br> dustry. He told how rats were ground up into the meat. Chemi=<br>cals were added to bad meat to make it look good to eat. <span name="prop_title">The Jungle</span><br> so shocked the country that Congress passed the <span name="act_title">Pure Food and<br> Drug Act</span> and the <span name="act_title">Meat Inspection Act</span>. These laws set up labora-<br>tories to test products and sent federal inspectors to check on<br> businesses that sold food and medicines.</p>
  40. <p class="pagenum" id="pagenum">440</p>
  41. </map>
  42. </div>
  43. </div>
  44. <script type="text/javascript" src="assets/jquery.rwdImageMaps.min.js"></script>
  45. <script>
  46. $(document).ready(function () {
  47. $('img[usemap]').rwdImageMaps();
  48. //$("#Chart_Horizontal").removeAttr("style") // Remove the style attribute.
  49. });
  50. </script>
  51. <script type="text/javascript" src="assets/jquery.maphilight.min.js"></script>
  52. <script>
  53. $( "area" ).hover(function() {
  54. $( this ).color('008800')
  55. });
  56. </script>
  57.  
  58. </body>
  59.  
  60. /*various colours
  61. #aa9a32; sage green
  62. #0063dc; flickr blue
  63. #096eb6; royal blue
  64. #694c46; suede brown
  65. #a7dbf3; sky blue
  66. #990033; claret
  67. */
  68. html,body {
  69. font-family: Helvetica, 'Constantina', Garamond, sans-serif;
  70. padding:;
  71. margin:0;
  72. height:100%;
  73. min-height:100%;
  74. }
  75.  
  76. img[usemap]{
  77. position: absolute;
  78. top: 0px;
  79. left: 0px;
  80. height:auto;
  81. max-height: 100%;
  82. max-width: 50%;
  83. }
  84.  
  85. .transcript {
  86. position: absolute;
  87. float: right;
  88. top: 0px;
  89. right: 0px;
  90. height: auto;
  91. max-height: 100%;
  92. max-width: 50%;
  93. border: 1px solid red;
  94. }
  95.  
  96. area.active {
  97. border: 5px #cccccc;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement