Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Pacific trails resort case study chapter 5

18/11/2021 Client: muhammad11 Deadline: 2 Day

Pacific Trails Resort Case Study

In this chapter’s case study you will use the existing Pacific Trails ( Chapter 4 ) website as a starting point to create a new version of the website that incorporates images.

You have five tasks in this case study:

1. Create a new folder for the Pacific Trails Resort website.

2. Update the pacific.css external style sheet file.

3. Update the Home page: index.html.

4. Update the Yurts page: yurts.html.

5. Create a new Activities page: activities.html.

Task 1: Create a folder called ch5pacific to contain your Pacific Trails Resort website files. Copy the index.html, yurts.html, and pacific.css files from the Chapter 4 Case Study ch4pacific folder. Copy the following files from the chapter5/casestudystarters/pacific folder in the student files and place them in your ch5pacific folder: coast.png, favicon.ico, marker.gif, sunset.png, trail.png, and yurt.png.

Task 2: The External Style Sheet. Launch a text editor and open the pacific.css external style sheet file.

1. The body element selector. Add a declaration that configures Arial, Helvetica, or sans-serif font typeface.

2. The header element selector. Add declarations to display the background image named sunset.png on the right without any repeats. Also configure styles for the header element selector with 400% line-height and 1em text-indent.

3. The nav element selector. Add a declaration to configure bold text.

4. The nav a element selector. Code styles to eliminate the display of the underline for hyperlinks (hint: use the nav a descendant selector with text-decoration: none; )

5. The h1 element selector. Add a declaration to display text in Georgia, Times New Roman, or serif font typeface.

6. The h2 element selector. Add a declaration to display text in Georgia, Times New Roman, or serif font typeface.

7. The h3 element selector. Code styles to display text in Georgia, Times New Roman, or serif font typeface.

8. The ul element selector. Code styles to display the marker.gif as the list marker (bullet).

9. The footer element selector. Code styles to configure 75% font size, italic font style, centered text, and Georgia, Times New Roman, or serif font typeface.

10. The resort class selector. Add a declaration to display bold text.

11. The contact id selector. Code styles to display text with 90% font size.

Save your pacific.css file. Check your syntax with the CSS validator ( http://jigsaw.w3.org/css-validator ). Correct and retest if necessary.

Task 3: The Home Page. Launch a text editor and open the home page, index.html. Remove the b, small, and i tags from the page. Code an tag below the h2 element. Configure the tag to display the coast.png image. Configure the alt, height, and width attributes for the image. Save and test your page in a browser. It should look similar to Figure 5.24 .

Task 4: The Yurts Page. Launch a text editor and open the yurts.html file. Remove the b, small, and i tags from the page. Next, you will modify this file to display the yurt.png image below the h2 element and configure it in a similar manner as you configured the coast.png image on the home page. Save and test your new yurts.html page. It should look similar to the one shown in Figure 5.25 .

Task 5: The Activities Page. Launch a text editor, open the yurts.html document, and save the file as activities.html—this is the start of your new activities page.

1. Modify the page title area as appropriate.

2. Change the h2 text to be Activities at Pacific Trails.

3. Modify the tag to display the trail.png image.

4. Delete the description list.

5. Configure the following text using h3 tags for the headings and paragraph tags for the sentences.

· “Hiking

· Pacific Trails Resort has 5 miles of hiking trails and is adjacent to a state park. Go it alone or join one of our guided hikes.

· Kayaking

· Ocean kayaks are available for guest use.

· Bird Watching

· While anytime is a good time for bird watching at Pacific Trails, we offer guided birdwatching trips at sunrise several times a week.”

Save your activities.html file. Launch a browser and test your new activities.html page.

Pacific Trails Resort Case Study

In this chapter’s case study you will use the existing Pacific Trails ( Chapter 5 ) website as a starting point to create a new version of the website. The new design is a centered page layout that takes up 80% of the browser viewport with a featured hero image on each page. You’ll use CSS to configure the new page layout, a background gradient, hero image, and other styles, including margin and padding. Figure 6.34 displays a wireframe with the wrapper div, which contains the other web page elements.

Figure 6.34 New wireframe.

You have five tasks in this case study:

1. Create a new folder for the Pacific Trails Resort website.

2. Edit the pacific.css external style sheet.

3. Update the Home page: index.html.

4. Update the Activities page: activities.html.

5. Update the Yurts page: yurts.html.

Task 1: Create a folder called ch6pacific to contain your Pacific Trails Resort website files. Copy the files from the Chapter 5 Case Study ch5pacific folder. Copy the coasthero.png, yurthero.png, and trailhero.png files from the chapter6/starters folder in the student files into your ch6pacific folder.

Task 2: The External Stylesheet. Launch a text editor and open the pacific.css external style sheet file.

· The body element Selector. Change the background color to a light blue (#90C7E3). linear gradient. Add style declarations to display a liner gradient that blends from white (#FFFFFF) to light blue (#90C7E3) and does not repeat.

· The wrapper id Selector. Add a new selector for an id named wrapper. Configure the wrapper id to be centered (see Hands-On Practice 6.4 ) with a width of 80%, white background color (#FFFFFF), a minimum width of 960 pixels, a maximum width of 2048px, and a 3px offset dark (#333333) box shadow.

· The header element Selector. Remove declarations for line height and indented text. Add declarations to configure 60px height, centered text, and 15px top padding.

· The h1 element Selector. Add a style declaration to configure zero top margin.

· The nav element Selector. Change the background color to white (#FFFFFF). Add declarations to configure centered text and 10px padding.

· The main element Selector. Add a new selector for the main element. Code declarations to configure 1px top padding, 20px right padding, 20px bottom padding, and 20px left padding. At the time this was written, Internet Explorer did not support default styles the HTML5 main element, so add the following style declaration using the display property (see Chapter 7 ) to nudge this browser to display as expected: display: block;

· The h2 element Selector. Add a style declaration to configure 1px offset gray (#CCCCCC) text shadow.

· The footer element Selector. Add a declaration to configure 20px of padding.

· The homehero id Selector. Add a new selector for an id named homehero. Code declarations to configure 300px height and to display the coasthero.png background image to fill the space (use background-size: 100% 100%;) without repeating.

· The yurthero id Selector. Add a new selector for an id named yurthero. Code declarations to configure 300px height and to display the yurthero.png background image to fill the space (use background-size: 100% 100%;) without repeating.

· The trailhero id Selector. Add a new selector for an id named trailhero. Code declarations to configure 300px height and to display the trailhero.png background image to fill the space (use background-size: 100% 100%;) without repeating.

Save the pacific.css file. Use the CSS validator ( http://jigsaw.w3.org/css-validator ) to check your syntax. Correct and retest if necessary.

Task 3: The Home Page. Launch a text editor and open the index.html file.

· Code div tags to add a wrapper div that contains the content of the web page. Use Hands-On Practice 6.4 as a guide.

· Configure a div element to display the homehero.png image. Code an opening div tag assigned to the id named homehero after the closing nav tag. Next, code a closing div tag. As shown in the wireframe in Figure 6.34 , this div is located between the nav element and the main element. There is no HTML or text content for this div. The purpose of this div is to display the hero image.

· Remove the img tag for the coast.png photo.

Save and test your page in a browser. It should look similar to Figure 6.35 .

Figure 6.35 Pacific Trails Home Page.

Task 4: The Yurts Page. Launch a text editor and open the yurts.html file.

· Code div tags to add a wrapper div that contains the content of the web page. Use Hands-On Practice 6.4 as a guide.

· Configure a div to display the yurthero.png image. Code an opening div tag assigned to the id named yurthero after the closing nav tag. Next, code a closing div tag. As shown in the wireframe in Figure 6.34 , this div is located between the nav element and the main element. There is no HTML or text content for this div.

· Remove the img tag for the yurt.png photo.

Save and test your page in a browser. It should look similar to Figure 6.36 .

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Accounting & Finance Mentor
Chartered Accountant
Instant Assignment Writer
Assignment Guru
Calculation Master
Maths Master
Writer Writer Name Offer Chat
Accounting & Finance Mentor

ONLINE

Accounting & Finance Mentor

This project is my strength and I can fulfill your requirements properly within your given deadline. I always give plagiarism-free work to my clients at very competitive prices.

$29 Chat With Writer
Chartered Accountant

ONLINE

Chartered Accountant

I have read your project description carefully and you will get plagiarism free writing according to your requirements. Thank You

$23 Chat With Writer
Instant Assignment Writer

ONLINE

Instant Assignment Writer

I have read your project description carefully and you will get plagiarism free writing according to your requirements. Thank You

$21 Chat With Writer
Assignment Guru

ONLINE

Assignment Guru

I am a PhD writer with 10 years of experience. I will be delivering high-quality, plagiarism-free work to you in the minimum amount of time. Waiting for your message.

$26 Chat With Writer
Calculation Master

ONLINE

Calculation Master

Being a Ph.D. in the Business field, I have been doing academic writing for the past 7 years and have a good command over writing research papers, essay, dissertations and all kinds of academic writing and proofreading.

$18 Chat With Writer
Maths Master

ONLINE

Maths Master

As an experienced writer, I have extensive experience in business writing, report writing, business profile writing, writing business reports and business plans for my clients.

$23 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

16 slice ct scanner comparison - WEEKI RESP 6053 - Manha de carnival by sigman and bonfa musical ideas - Http www mhhe com physsci chemistry essentialchemistry flash buffer12 swf - Reputation & Stakeholder Audit - Modify the po q4 worksheet so gridlines will print - Forms of Nursing Inquiry: Quality improvement (QI), Research, and Evidence-Based Practice (EBP) - What are the various ways readers might understand the designation qoheleth? - Ergonomic risk assessment template - Anthem final test answer key - ISO Certification - Dixell controller xr02cx manual - Discussion Topic Ch 5 - S4 timetable oxford to banbury - Delta plc communication protocol - Op clear medical abbreviation - Message trace office 365 - Health care delivery models and nursing practice - Bcvr entries - Community Health Case 2 - Taxation (120 words) - Units of activation energy arrhenius - Reconstructing human origins a modern synthesis 3rd edition - Survey - Describe the type of pay structure (merit, pay-for-performance, et cetera) that exists in your current workplace or a previous workplace. - Include but are not limited to - Case study - Barrow island turtle tagging - Coriolis effect lab activity - Central bayside community health services parkdale - Gmc medical licensing assessment - Latin word for skill - Star in a box - Samsung a strategic plan for success - The story of an hour literary devices - Virtual lab mealworm behavior worksheet - Synteko classic 35 review - John wayne gacy conviction - Write a Discussion with at least 350-400 words in APA Format. - Jeff nippard push pull legs free pdf - Discovering psychology the behaving brain worksheet answers - In the following, what are the degrees of freedom: t(29) = 2.001, p < .05? - Five finger retell nonfiction - Escape from the dragon shrek - Your in Communication - Macromolecules questions and answers - Write a one page letter to your 16-year old self - What you pawn i will redeem annotated bibliography - Dr krishna tumuluri sydney - PSycho - Consider the following accounting terms and definitions - Ts eliot aunt helen analysis - The power of effective speaking - What is the missing number in the sequence - The ethics and legalities of medication error disclosure - Costco membership application form - Indian camp summary - Re entry to practice nursing - Network diagram critical path questions - Snapper rocks sea baths - How much is retail markup - Strayer university millersville md - Advertising 8 - What command will display all connected ospfv2 routers - Cleveland clinic campus map - Acrostic poem on shakespeare - How to open project mc2 composition book without bracelet - Trait approach to leadership theory - RP01 DIT610 - Is designed passive voice - Association of insurance surveyors - Increase of accounts payable on cash flow - 14015 fm 2769 leander tx 78641 - When i heard the learn d astronomer paraphrase - Older Adults Patient Education Issues Essay and Interview - Use of potassium hydroxide in vanishing cream - Health information management - Raptors a field guide for surveys and monitoring - Sop for global business management - What are the three types of malware that have the primary traits of circulation and/or infection? - Address and postcode finder new zealand - Clearpass onboard deployment guide - Joy luck club a pair of tickets - OMM622 WEEK 6 FINAL PAPER - Journal Article Summaries/Evaluations - Editing techniques in action films - Excel capstone project - Whats the density of milk - Building Innovation into the Outsourcing Relationship: A Case Study - Cadbury gorilla ad song - Royal surrey blood test - Leaving cert points 2015 - Define intensive distribution strategy - The _____ act criminalized securities fraud and toughened penalties for corporate fraud. - Quality concepts course - CRIMINAL JUSTICE - Dr ross dwyer radiologist - Triangle Shirtwaist Fire - N5 biology past papers - Tarasoff vs regents university california brief