Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <!--
  4. New Perspectives on HTML and XHTML 5th Edition
  5. Tutorial 3
  6. Case Problem 1
  7.  
  8. ICI Home Page
  9. Author: Some Schmuck
  10. Date: 05/09/2011
  11.  
  12. Filename: crypt.htm
  13. Supporting files: back1.gif, back2.gif, locks.jpg, logo.gif, scytale.gif
  14. -->
  15.  
  16. <title>International Cryptographic Institute</title>
  17. <style type="text/css">
  18. body {background-image: url(back1.gif); background-repeat: repeat-y; background-color: Black; margin: 0px; color: white}
  19. h1 {background-image: url(back2.gif); font-family: 'Courier New', monospace; font-size: 24pt; letter-spacing: 10pt; line-height: 0.7pt; text-align: center; color: yellow; margin: 0px}
  20. b {color: yellow}
  21. p {text-indent: 2em}
  22. </style>
  23. </head>
  24.  
  25. <body>
  26. <div id="logo">
  27. <img src="logo.gif" alt="ICI" width="95" height="78" style="float": left />
  28. </div>
  29. <div id="pageContent" style="width: 670px; margin-left: 100px; font-family:Arial, Helvetica, sans-serif">
  30. <h1>
  31. THE&nbsp;<br />
  32. SCIENCE<br />
  33. &nbsp;&nbsp;OF<br />
  34. CRYPTOGRAPHY
  35. </h1>
  36.  
  37. <h2>What is Cryptography?</h2>
  38.  
  39. <p><b>Cryptography</b> is the science of secure communications,
  40. formed from the Greek words<i>krypt&#243;s</i> meaning "hidden"
  41. and <i>l&#243;gos</i>, meaning "word." The first recorded use of cryptography
  42. was by the Spartans who as early as 400 BC employed a cipher device called a
  43. scytale to send secret communications between military
  44. commanders. The scytale consisted of a tapered baton around which was wrapped
  45. a piece of parchment inscribed with the message. Once unwrapped the parchment
  46. appeared to contain an incomprehensible set of letters; however when wrapped
  47. around another baton of identical size the original text appears.
  48. <img src="scytale.gif" alt="image" width="250" height="69" style="float: right" />
  49. </p>
  50.  
  51. <p style="border-bottom: 2px solid yellow; padding-bottom: 10px">Cryptographers developed more and more ingenious systems,
  52. but it was in the 20<sup>th</sup> Century that the science of cryptography took
  53. off. The first major achievement was the development of rotor cipher machines.
  54. An American, Edward Hebern recognized that by hardwiring alphabetic substitution in
  55. the connections from one side of an electrical rotor to those on the other side and
  56. cascading a collection of such rotors, alphabetic substitutions of almost any
  57. complexity could be produced. German engineers independently discovered the rotor
  58. concept and designed the precursors to the most famous cipher machine in history
  59. &ndash; the German Enigma machine which was used during World War II. The cracking
  60. of the Enigma ciphers by British and Polish cryptanalysts is one of the
  61. greatest triumphs in the history of cryptography and played an important role in
  62. the Allied victory.
  63. </p>
  64. <p style="text-align:center">To learn more cryptography, please tour our site.<br />
  65. <img src="cocks.jpg" alt="lock links" width="510" height="110" usemap="#locks" style="border-width: 0" />
  66. <map id="locks" name="locks">
  67. <area shape="circle" coords="52,49,43" href="history.htm" alt="History" />
  68. <area shape="circle" coords="155, 52, 43" href="enigma.htm" alt="Enigma" />
  69. <area shape="circle" coords="255, 52, 43" href="algo.htm" alt="Algorythms" />
  70. <area shape="circle" coords="356,51,43" href="single.htm" alt="Single Key" />
  71. <area shape="circle" coords="455, 52, 43" href="public.htm" alt="Public Key" />
  72. </map>
  73. </p>
  74. </div>
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement