T6 Coding Challenge 3
Summary You’ve been handed a web page that will display the opening chapter of the Charles Dickens novel, Great Expectations. You will lay out the text of the chapter in three columns as shown in Figure 6–50 , with a divided line separating the columns. Write the code for the style sheet. Do the following: code6-3.html <!doctype html> <html lang="en"> <head> <!-- New Perspectives on HTML5 and CSS3, 8th Edition Tutorial 6 Coding Challenge 3 --> <meta charset="utf-8"> <title>Coding Challenge 6-3</title> <link rel="stylesheet" href="code6-3_layout.css"> <link rel="stylesheet" href="code6-3_columns.css"> </head> <body> code6-3_columns.css /* New Perspectives on HTML5 and CSS3, 8th Edition Tutorial 6 Coding Challenge 3 */ /* article element styles */ article { column-count: 3; column-gap: 20px; column-widt...