Fill This Form To Receive Instant Help

Help in Homework
trustpilot ratings
google ratings


Homework answers / question archive / is on the Web itself

is on the Web itself

Computer Science

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;}

Option 1

Low Cost Option
Download this past answer in few clicks

2.85 USD

PURCHASE SOLUTION

Already member?


Option 2

Custom new solution created by our subject matter experts

GET A QUOTE