Answered step by step
Verified Expert Solution
Question
1 Approved Answer
. Launch a text editor and open the index.html file. Examine the source code and locate the style element. Copy the CSS contained between the
Launch a text editor and open the index.html file. Examine the source code and
locate the style element. Copy the CSS contained between the style tags and paste
into a new text document named bistro.css Save the bistro.css file in the print
folder.
Edit the index.html file, delete the style tags and CSS and code a link tag in
the head section that associates the web page with the bistro.css file for screen
display use mediascreen
Edit the index.html file and add another link tag that associates the web page with a
file named bistroprint.css for printing use mediaprint Save the
index.html file.
Launch a text editor and open bistro.css Since you want to keep most the styles for
printing, you will start by creating a new version of the external style sheet. Save
bistro.css with the name of bistroprint.css in the print folder. You will
modify three areas on this style sheet: the header selector, the main selector, and the
nav selector.
Modify the header styles to print using black text in point font size:
header color: #; fontsize: pt;
Modify the main element area to print using a serif typeface in a point font
size:
main fontfamily: Times New Roman serif; font
size: pt;
Modify the nav area to not display:
nav display: none;
Save your file in the print folder. Test your work. Display your index.html file in a
browser. Select PrintPreview. Your display should look similar to the page shown
below. The header and content font size have been configured. The navigation does not
display.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started