CSS, 6th Edition by Terry Ann
Felke-Morris
Complete Chapter Solutions Manual
are included (Ch 1 to 12)
** Immediate Download
** Swift Response
** All Chapters included
** Case Studies Solutions
,Table of Contents are given below
1.Internet and Web Basics
2.HTML Basics
3.Web Design Basics
4.Cascading Style Sheets Basics
5.Graphics & Text Styling Basics
6.More CSS Basics
7.Page Layout Basics
8.Responsive Layout Basics
9.Table Basics
10.Form Basics
11.Media and Interactivity Basics
12.Web Publishing Basics
,Solutions Manual organized in reverse order, with the last chapter displayed first, to ensure that
all chapters are included in this document. (Complete Chapters included Ch12-1)
Instructor Material
Basics of Web Design, 6th Edition
Chapter 12 End of Chapter Suggested Solutions
Hands-On Exercises
1. Before assigning this exercise, run both the WebAim Wave
(https://wave.webaim.org) and ATRC AChecker
(https://www.achecker.ca/checker) automated tests on your school website. You
may want to choose a different website for your students to test or assign groups
of students to test specific websites. Students will write a one-page report that
describes differences in the way these tools report the results of the test and
also Includes recommendations for improving the website.
2. Student answers will vary. Students find this assignment to be difficult because
the choices are overwhelming. You might “help” your students by mentioning
website hosts that you have found to be reliable as a starting point in their
research. Students will create a web page that uses a table to create an
organized presentation of three web host companies and their services. The
URLs of the resources should be listed.
Focus on Web Design
1. Student answers will vary. They will write a write a one-page report that
describes the three SEO tips found interesting or potentially useful. URLs of
resources are cited.
2. Student answers will vary. They will write a write a one-page report that
describes three SEO recommendations for a single page website. URLs of
resources are cited.
3. Student answers will vary. They will write a write a one-page report that
describes three SMO tips found interesting or potentially useful. URLs of
resources are cited.
Page 1
, Instructor Material
Basics of Web Design, 6th Edition
Chapter 11 End of Chapter Suggested Solutions
Hands-On Exercises
1. <a href="sparky.mov">Sparky Movie</a> (.mov)
2.
<audio controls>
<source src="soundloop.mp3" type="audio/mpeg">
<source src="soundloop.ogg" type="audio/ogg">
<a href="soundloop.mp3">Download the Music</a> (MP3)
</audio>
3.
<video controls poster="prime.jpg"
width="213" height="163">
<source src="prime.m4v" type="video/mp4">
<source src="prime.ogv" type="video/ogg">
<source src="prime.webm" type="video/webm">
<p>Your browser does not support the video
format.<br>
<img src="prime.jpg" alt-"Property Showcase"
width="213" height="163"></p>
</video>
4. Example solution:
<details>
<summary>Item 1</summary>
<p>This is detailed information about the first item.</p>
</details>
<details>
<summary>Item 2</summary>
<p>This is detailed information about the second item.</p>
</details>
<details>
<summary>Item 3</summary>
<p>This is detailed information about the third item.</p>
</details>
5.
<iframe src="https://www.webdevbasics.net"
width="640" height="385">
View the <a href="https://www.webdevbasics.net">textbook
website</a>.
</iframe>
Page 1