Trusted by Students Everywhere
Why Choose Us?
0% AI Guarantee

Human-written only.

24/7 Support

Anytime, anywhere.

Plagiarism Free

100% Original.

Expert Tutors

Masters & PhDs.

100% Confidential

Your privacy matters.

On-Time Delivery

Never miss a deadline.

is on the Web itself

Computer Science Jan 09, 2021

is on the Web itself. Usé a Seu tutorial that is easy to read. Select a section that discusses J u covered in this chapter. Create a web page that uses this new technique. Consider h suggested page layout follows (or does not follow) principles of design such as contra repetition, alignment, and proximity (see Chapter 5). The web page should provide th of your tutorial (configured as a hyperlink), the name of the website, a new technique you discovered, and a discussion of how the technique follows (or follow) principles of design. ow the st description of the does not WEBSITE CASE STUDY Implementing a CSS Two-Column Page Layout Each of the following case studies continues throughout most of the textbook. This chapter implements a CSS two-column page layout in the websites. Javalam Coffee House See Chapter 2 for an introduction to the JavaJam Coffee House case study. Figure 2.31 colum page layout with wrapper, shows a site map n CSS page layout for JavaJam. Figure 6.48 shows a wireframe for a two-column for the JavaJam. In this case study, you will implement a new two- header, navigation, main content, hero image, and footer areas wrapper Figure 6.48 Wireframe for a two-column page layout for the JavaJam website header nav main hero image footer

index.html

<!DOCTYPE html>

<html>

<head>

<title>JavaJam Coffee House</title>

<link rel="stylesheet" href="javajam.css">

</head>

<body>

<div id="wrapper">

<header>

<img src="javajamlogo.jpg" width height alt="JavaJam Coffee House" align="left">

<h1> JavaJam Coffee House</h1>

</header>

<nav>

<a href="index.html">Home</a>&nbsp <a href="menu.html">Menu</a>&nbsp <a href="music.html">Music</a>&nbsp <a href="jobs.html">Jobs</a>

</nav>

<main>

<img src="windingroad.jpg" height="156" width="333" alt="The Winding Road" align="right">

<h2>Follow the Winding Road to JavaJam</h2>

<p>We're a little out of the way, but take a drive down Garrett Bay Road to JavaJam today! Indulge in our locally roasted free-trade coffee and home-made pastries. You'll feel right at home at JavaJam!</p>

<h3>JavaJam Coffee House features:</h3>

<ul>

<li>Specialty Coffee and Tea</li>

<li>Bagels, Muffins, and Gluten-free pastries</li>

<li>Organic Salads</li>

<li>Music and Poetry Readings</li>

<li>Open Mic Night</li>

</ul>

<div>

12010 Garrett Bay Road<br>

Ellison Bay, WI 54210<br>

888-555-5555<br><br>

</div>

</main>

<footer>

Copyright &copy 2018 JavaJam Coffee House<br>

<a href="mailto:shane@spier.com">shane@spier.com</a>

</footer>

</div>

</body>

</html>

Menu.html

<!DOCTYPE html>

<html>

<head>

<title>JavaJam Coffee House Menu</title>

<link rel="stylesheet" href="javajam.css">

</head>

<body>

<div id="wrapper">

<header>
<img src="javajamlogo.jpg" width height alt align="left">
<h1>JavaJam Coffee House</h1>

</header>

<nav>

<a href="index.html">Home</a>&nbsp <a href="menu.html">Menu</a>&nbsp <a href="music.html">Music</a>&nbsp <a href="jobs.html">Jobs</a>

</nav>

<main>

<img src="mugs.jpg" height="156" width="333" alt="The Winding Road" align="right">

<h2>Coffee at JavaJam</h2>

<p>Indulge in our locally roasted free-trade coffee and enjoy the aroma, the smooth taste, the caffeine! Join our Mug Club and get a 10% discount on each cup of coffee you purchase &mdash; ask the barista for details.</p>

<dl>

<dt><strong>Just Java</strong></dt>

<dd>Regular house blend, decaffinated coffee, or flavor of the day.<br>

Endless Cup $3.00</dd>

<dt><strong>Cafe Au Lait</strong><dt>

<dd>House blended coffee infused into a smooth, steamed milk.<br>

Single $3.00 Double $4.00</dd>

<dt><strong>Iced Cappucino</strong></dt>

<dd>Sweetened espresso blended with icy-cold milk and served in chilled glass.<br>

Single $4.75 Double $6.00</strong></dt>

</dl>

</main>

<footer>

Copyright &copy 2018 JavaJam Coffee House<br>

<a href="mailto:shane@spier.com">shane@spier.com</a>

</footer>

</div>

</body>

</html>

Music.html

<!DOCTYPE html>

<html>

<head>

<title>JavaJam Coffee House Music</title>

<link rel="stylesheet" href="javajam.css">

</head>

<body>

<div id="wrapper">

<header>
<img src="javajamlogo.jpg" width height alt align="left">
<h1>JavaJam Coffee House</h1>

</header>

<nav>

<a href="index.html">Home</a>&nbsp <a href="menu.html">Menu</a>&nbsp <a href="music.html">Music</a>&nbsp <a href="jobs.html">Jobs</a>

</nav>

<main>

<h2>Music at JavaJam</h2>

<p>The first Friday night each month at JavaJam is a special night! Join us from 8pm to 11pm for some music you won&rsquo;t want to miss!</p>

<h4>January</h4>

<p class="details"><a href="melanie.jpg"><img src="melaniethumb.jpg" height="80" width="80" alt="Melanie Morris"></a>Melanie Morris entertains with her melodic folk style.</p>

<h4>February</h4>

<p class="details"><a href="greg.jpg"><img src="gregthumb.jpg" width="80" height="80" alt="Tahoe Greg"></a>Tahoe Greg is back from his tour. New songs. New stories.</p>

</main>

<footer>

Copyright &copy 2018 JavaJam Coffee House<br>

<a href="mailto:shane@spier.com">shane@spier.com</a>

</footer>

</div>

</body>

</html>

JavaJam.css

* {

box-sizing: border-box;

}

body { background-color: #FCEBB6;

background-image: background.gif;

color: #221811;

font-family: Ariel, Verdana, sans-serif; }

header

{

background-color: #D2B48C;

height: 150px;

background-image: javajamlogo.jpg;

background-repeat: no-repeat:

}

h1 { background-color: #D2B48C;

color: #000000;

text-align: center;

padding-top: 45px;

padding-left: 220px;

font-size: 3em;}

  

footer { background-color: #D2B48C;

color: #221811;

font-size: small;

font-style: italic;

text-align: center;

padding-bottom: 10px;

border-top: solid 2px}

nav { text-align: center;

font-weight: bold;

font-size: 1.5em;

padding-top: 10px; }

nav a {text-decoration: none; }

#wrapper { background-color: #FEF6C2;

margin-left: auto;

margin-right: auto;

width: 80%;

min-width: 900px;

max-width: 1280px;

box-shadow: 3px 3px 3px; }

h4 {

background-color: #D2B48C;

font-size: 1.2em;

padding-left: .5em;

padding-bottom: .25em;

}

main { padding-left: 2em; padding-right: 2em; padding-bottom: 2em; overflow: auto;}

.details { padding-left: 20%;

padding-right: 20%;

}

img { padding-left: 10px;

padding-right: 10px;}

Expert Solution

menu.html
**************

<!DOCTYPE html>

<html lang="en">
<head>
   <title>JavaJam Coffee House</title>
   <meta charset="utf-8">
   <link rel="stylesheet" href="javajam.css">
</head>
<body>
<div id="wrapper">
<header>
   <h1>JavaJam Coffee House</h1>
</header>
<table id="nav-bar">
<tr>
<td>
<nav>
   <ul>
   <li><a href="home.html">Home</a></li>
   <li><a href="menu.html">Menu</a></li>
   <li><a href="music.html">Music</a></li>
   <li><a href="jobs.html">Jobs</a></li>
   </ul>
</nav>
</td>
</tr>
</table>
<main id="menu_main">
   <div id="heromugs"></div>
   <h2>Coffee at JavaJam</h2>
   <p>Indulge in our locally roasted free-trade coffee and enjoy the aroma, the smooth taste, the caffeine! Join our Mug Club and get a 10% discount on each cup of coffee you purchase &mdash; ask the barista for details.</p>
   <table id="content-table">
       <tr>
           <td><b>Just Java</b><br>
           <dd>Regular house blend, decaffeinated coffee, or flavor of the day.</dd>
           <dd>Endless Cup $3.00</dd>
           <b>Cafe au Lait</b><br>
           <dd>House blended coffee infused in to a smooth, steamed milk.</dd>
           <dd>Single $3.00 Double $4.00</dd>
           <b>Iced Cappuccino</b><br>
           <dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass.</dd>
           <dd>Single $4.75 Double $5</dd></td>
       </tr>
   </table>
</main>

</div>
</body>
</html>


index.html
*************

<!DOCTYPE html>

<html lang="en">
<head>
   <title>JavaJam Coffee House</title>
   <meta charset="utf-8">
   <link rel="stylesheet" href="javajam.css">
</head>
<body>
<div id="wrapper">
<header>
   <h1>JavaJam Coffee House</h1>
</header>
<nav>
   <ul>
  
   <li><a href="home.html">Home</a></li>
   <li><a href="menu.html">Menu</a></li>
   <li><a href="music.html">Music</a></li>
   <li><a href="jobs.html">Jobs</a></li>
   </ul>
</nav>
<main>
   <div id="windingroad"></div>
   <h2>Follow the Winding Road to JavaJam</h2>
   <p>We&#39;re a little out of the way, but take a drive down Route 42 to JavaJam today! Indulge in our locally roasted free-trade coffee and home-made pastries. You&#39;ll feel right at home at JavaJam!</p>
   <h3>JavaJam Coffee House features:</h3>
   <ul>
       <li>Specialty Coffee and Tea</li>
       <li>Bagels, Muffins, and Organic Snacks</li>
       <li>Music and Poetry Readings</li>
       <li>Open Mic Night</li>
   </ul>
   <div>
   54321 Route 42<br>
   Ellison Bay, WI 54210<br>
   888-555-5555
   </div>
</main>

</div>
</body>
</html>


music.html
**************

<!DOCTYPE html>

<html lang="en">
<head>
   <title>JavaJam Coffee House</title>
   <meta charset="utf-8">
   <link rel="stylesheet" href="javajam.css">
</head>
<body>
<div id="wrapper">
<header>
   <h1>JavaJam Coffee House</h1>
</header>
<nav>
   <ul>
  
   <li><a href="home.html">Home</a></li>
   <li><a href="menu.html">Menu</a></li>
   <li><a href="music.html">Music</a></li>
   <li><a href="jobs.html">Jobs</a></li>
   </ul>
</nav>
<main>
   <div id="heroguitar"></div>
   <h2>Music at JavaJam</h2>
   <p>The first Friday night each month at JavaJam is a special night. Join us from 8 pm to 11 pm for some music you won&#39;t want to miss!</p>
   <h4>January</h4>
       <div class="details">
           <img src="melaniethumb.jpg" alt="Melanie Morris" height="80" width="80" class="floatleft">
           Melanie Morris entertains with her melodic folk style.
          
       </div>
   <h4>February</h4>
       <div class="details">
           <img src="gregthumb.jpg" alt="Tahoe Greg" height="80" width="80" class="floatleft">
           Tahoe Greg is back from his tour. New songs. New stories.
      
       </div>
</main>

</div>
</body>
</html>


javajam.css
**************

* { box-sizing: border-box; }

audio { display: block; margin-top: 1em; }

form { padding: 2em; }

label { float: left;
       display: block;
       text-align: right;
       width: 8em;
       padding-right: 1em;
       clear: left; }

input, textarea { display: block; margin-bottom: 1em; }


#content-table { width: 90%;
       margin: auto;
       border-spacing: 0px;}
      
td, th { padding: 0px;
       border-style: none; }
      

#windingroad { background-image: url(windingroad.jpg);
           background-size: 100% 100%;
           height:250px; }
          
#heromugs { background-image: url(heromugs.jpg);
           background-size: 100% 100%;
           height:250px; }
          
#heroguitar { background-image: url(heroguitar.jpg);
              background-size: 100% 100%;
              height:250px; }

nav a:link { color: #FEF6C2; }
nav a:visited { color: #D2B48C; }
nav a:hover { color: #CC9933; }

nav { font-weight: bold;
      text-align: center;
      font-size: 1.5em;
      padding-top: 10px;
      float: left;
      width: 200px; }
nav ul { list-style-type: none; padding-left: 0px; }
nav a { text-decoration: none; }

body { background-color: #FCEBB6;
   font-size: .8em;
       background-image: url(background.gif);
       color: #221811;
       font-family: Verdana, Arial, sans-serif; }
     
header { background-color: #D2B48C;
       height: 150px;
       background-image: url(javajamlogo.jpg);
       background-repeat: no-repeat; }
      
h1 { font-size: 3em;
   padding-top: 30px;
   padding-left: 220px;
   line-height: 200%;
      }

h4 { background-color: #D2B48C;
   font-size: 1.2em;
   padding-left: 10px;
   padding-bottom: 0px;
   border-bottom: 2px solid #221811;
   text-transform: uppercase;
   clear: left; }

img { padding: 0px 10px }

main { padding: 0px 0px 2em 0px;
       margin-left: 200px;
       background-color: #FCEBB6;
       font-color: #221811;
   }

main h2, main h3, main h4, main p, main div, main ul, main dl { padding-left: 3em; padding-right: 2em; }
header, nav, main, footer { display: block; }

.floatleft { float: left; padding: 0px 20px 20px 0px; }

.details { padding-left: 20%;
           padding-right: 20%;
           overflow: auto; }
         
#wrapper { background-color: #231814;
           width: 80%;
           min-width: 900px;
           max-width: 1280px;
           box-shadow: 3px 3px 3px #333;
           margin-right: auto;
           margin-left: auto; }
         

#nav-bar{
   width:200px;
   margin-right: 0px;
   margin-left : 0px;
}
#menu_main { padding: 0px 0px 2em 0px;
       margin-left: 200px;
       background-color: #FCEBB6;
       font-color: #221811;
       margin-top: -150px;
   }
footer { background-color: #D2B48C;
       font-size: .60em;
       font-style: italic;
       text-align: center;
       padding-bottom: 10px;
       border: 2px solid #221811;
       }

Archived Solution
Unlocked Solution

You have full access to this solution. To save a copy with all formatting and attachments, use the button below.

Already a member? Sign In
Important Note: This solution is from our archive and has been purchased by others. Submitting it as-is may trigger plagiarism detection. Use it for reference only.

For ready-to-submit work, please order a fresh solution below.

Or get 100% fresh solution
Get Custom Quote
Secure Payment