Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

LP2 Assignment: International Cryptographic Institute Directions: Complete Case

ID: 3579736 • Letter: L

Question

LP2 Assignment: International Cryptographic Institute Directions: Complete Case Problem 1 - International Cryptographic Institute found on pages 214-215 in your textbook. Complete the web pages using Dreamweaver within a new folder under root called LP2 and upload them to your 000WebHost account After uploading the files make sure to update your index.html page to link to the Case web page (crypt.htm). Your online work will be graded, but please zip all your Case Problem 1 files and submit them in the LP2 Assignment: International Cryptographic Institute dropbox. If needed, these instructions are available for help with zipping files. The student data files can be found by going to the Content Map and then clicking on the Student Data Files link. This assignment is worth 100 points and will be graded according to the following scoring guide. Scoring Guide (100 Points) Rating Scale 10 - 9 Work meets or exceeds criterion at a high level of competence. 8 Work reflects an understanding of criterion with minor misunderstandings/misconceptions. 7 Criterion partially met, but one or more important concepts/skills are missing or flawed. 6 Work reflects an attempt to meet criterion, but significant misunderstandings/misconceptions are apparent. 5 - 0 Criterion not met or work is absent. Criteria 1. crypt.htm file is uploaded to 000WebHost account. 2. Name and date are added to the comment section of the crypt.htm file. 3. Three Strong elements have the class value set to ‘keyword.’ 4. An embedded style sheet is added to the head section of the crypttxt.htm file. 5. Background color is black with white text. 6. H1 element has font set to Courier new, 28 pt. font, 20 pt. kerning, and font color of yellow. 7. H2 element is nested in article element, font set to 24 pt., not boldfaced, and 5 pt. kerning. 8. Align paragraph text within the article element using full justification. 9. Locks image map is created with 5 hot spots and image map is applied to locks.jpg inline image. 10. No grammatical errors.

Explanation / Answer

Here goes the required html code for the above program

Code:

<!DOCTYPE html>
<html>

<head>
<style type="text/css">
body{
   background-color: black;
   color: white;
}
h1{
   font-family: "courier new";
   color: yellow;
   font-size: 28pt;
}
h2{
   font-size: 24pt;
}
p{
   text-align: justify;
}
</style>
</head>

<body>
<!-- your name, Date -->
<strong class="keyword">This is the first strong element</strong>
<strong class="keyword">This is the second strong element</strong>
<strong class="keyword">This is the second strong element</strong>
<h1>This is heading H1</h1>
<article>
   <h2>This is heading H2</h2>
   <p>This is paragraph element</p>
</article>
<img src="locks.jpg" width="145" height="126" alt="Planets" usemap="#planetmap">

   <map name="planetmap">
      <area shape="circle" coords="0,82,126" alt="Sun" href="mercury.htm">
      <area shape="circle" coords="90,58,3" alt="Mercury" href="venus.htm">
      <area shape="circle" coords="124,58,8" alt="Venus" href="earth.htm">
      <area shape="circle" coords="90,58,3" alt="Mercury" href="mars.htm">
      <area shape="circle" coords="124,58,8" alt="Venus" href="jupiter.htm">
   </map>

</body>
</html>


Notes: