Question
You will use your text editor to create a table and apply table styles. First, you insert a table element. Next, you add a table
You will use your text editor to create a table and apply table styles. First, you insert a table element. Next, you add a table caption, table rows, table headers, and table data. Then, you create style rules to format the table. Work with the apply08.html file and the applystyles08.css file. You will also use professional web development practices to indent, space, comment, and validate your code.
3. In the apply08.html file, add a table element within the main element.
4. In the apply08.html file, add the following caption to the table element:
5. In the apply08.html file, add the following elements within the table element:
6. In the applystyles08.css file, create the following style rules: table { width: 80%; margin-left: auto; margin-right: auto; } table, tr, th, td { border-collapse: collapse; border: solid 0.1em #000000; padding: 1em; } td { text-align: center; } caption { font-size: 2em; padding: 1em; margin-top: 1em; } 7. Add appropriate comments above each style rule.
code is below
/* Style sheet created by: Student's First Name Student's Last Name, Today's Date */
/* Style for body specifies a background color */ body { background-color: #669999; }
/* Style for the container element */ #container { width: 90%; margin-left: auto; margin-right: auto; }
/* Style for the footer element */ footer { font-size: .70em; text-align: center; }
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