KayakDoorCounty.net             KayakDoorCounty.net     Tours     Rentals     Contact               Tours by KayakDoorCounty.net Your next adventure is only a paddle away....  Take a guided kayak tour while you explore the scenic shoreline of Door County Featured tours this week:   Cana Island   Mink River   Europe Lake       Rent Kayaks from KayakDoorCounty.net Be Your Own Guide.....  Half day, full day, and week-long rentals available. Rent a kayak at one of these three scenic locations: Eagle Harbor Sister Bay Garrett Bay   Contact KayakDoorCounty.net Call, Text, or Email A trained kayak guide will answer all your questions and get you out on the water! Call to reserve your kayak today! 555-555-5555 info@kayakdoorcounty.net KayakDoorCounty.net info@kayakdoorcounty.net         Activity 2: Analyze the index.html and the result Click the hyperlinks and observe the result Provide a clear explanation and example that uses all the following: background-image: min-height: background-attachment background-position background-repeat background-size vh file: mypage.html (use embedded css)

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
<!DOCTYPE html>
<!-- This is the parallax scrolling single page webste -->
<html lang="en">
<head>
<title>KayakDoorCounty.net</title>
<meta charset="utf-8">
<style> 
body { font-family: Tahoma, Verdana, Arial, sans-serif; 
       margin: 0; padding: 0;
       }
.hero { 
    background-image: url(beached.jpg); 
    min-height: 100vh;  
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
padding: 0;
}
.tourshero { 
    background-image: url(kayaks.jpg); 
    min-height: 100vh;
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
 }
.rentalshero { 
    background-image: url(rentals.jpg); 
    min-height: 100vh; 
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
 }
 .contacthero { 
    background-image: url(lonekayak.jpg); 
    min-height: 100vh;  
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
 }
 
nav { z-index:9999;
      position: fixed;
 top: 0;
 left: 0;
 padding: .5em;
 height: 40px;
 background:rgba(25,25, 25, 0.70);
 width: 100%;
 font-size: 120%;
 font-weight: bold;
 min-width: 900px;
 }
nav ul { list-style-type: none; 
         margin: 5px; }
nav ul li { display: inline; padding-left: 2em; padding-right: 2em; }
nav a { text-decoration:none; }
nav a:link { color: #EAEAEA; }
nav a:visited { color: #FFF; }
nav a:hover { color: #FDA27F; }
h1 { height: 100px; 
     padding-top: 2em; 
text-align: center;
     background:rgba(255, 255, 255, 0.80);
}
.space {height: 20vh; }
#tours, #rentals, #contact {  background-color: #FFF;
                 width: 60%;
 padding-left: 6em;
 padding-top: 70px;
 padding-bottom: 2em; }
footer {   background:rgba(25,25, 25, 0.90);
         width: 100%;
         font-size: 90%;
         text-align: center;
         color: #EAEAEA; 
 
position: fixed;
         bottom: 0;}
footer a { text-decoration: none;  
          color: #EAEAEA; }
</style> 
</head> 
<body> 
<nav>
  <ul>
    <li><a href="#home">KayakDoorCounty.net</a></li>
    <li><a href="#tours">Tours</a></li>
    <li><a href="#rentals">Rentals</a></li>
    <li><a href="#contact">Contact</a></li>
  </ul>
</nav>
 
<!-- Home Page -->
<section id="home" class="hero">
<div  class="space"> </div> 
<h1><a href="#home"><img src="kayakdc.gif" alt="KayakDoorCounty.net"></a></h1> 
</section>
 
 
<!-- Tours Page -->
<section id="tours"> 
<h2>Tours by KayakDoorCounty.net</h2>
<h2>Your next adventure is only a paddle away....</h2> 
<p>Take a guided kayak tour while you explore the scenic shoreline of Door County<p>
<h3>Featured tours this week:</h3>
<ul>
  <li>Cana Island</li>
  <li>Mink River</li>
  <li>Europe Lake</li>
</ul>
</section> 
<div class="tourshero"></div>
 
<!-- Rentals Page -->
<section id="rentals"> 
<h2>Rent Kayaks from KayakDoorCounty.net</h2>
<h3>Be Your Own Guide.....</h3> 
<p>Half day, full day, and week-long rentals available.<br><br>
Rent a kayak at one of these three scenic locations:</p>
<ul>
<li>Eagle Harbor</li>
<li>Sister Bay</li>
<li>Garrett Bay</li>
</ul>
</section>
<div class="rentalshero"></div>
<!-- Contact Page -->
<section id="contact"> 
<h2>Contact KayakDoorCounty.net</h2>
<h3>Call, Text, or Email</h3>
<p>A trained kayak guide will answer all your questions and get you out on the water!<br>
Call to reserve your kayak today!</p>
555-555-5555<br>
<a href="mailto:info@kayakdoorcounty.net">info@kayakdoorcounty.net</a>
</section>
<div class="contacthero"></div>
<footer>
KayakDoorCounty.net<br>
<a href="mailto:info@kayakdoorcounty.net">info@kayakdoorcounty.net</a>
</footer>
</body> 
</html> 
 
 

Activity 2:

  1. Analyze the index.html and the result

  2. Click the hyperlinks and observe the result

  3. Provide a clear explanation and example that uses all the following:

    background-image: min-height: background-attachment background-position background-repeat background-size

    vh
    file: mypage.html (use embedded css)

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Uniform Resource Indicator
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education