Department Editorial Marketing Employee Table Name Joel Murach Anne Boehm Zak Ruvalcaba Judy Taylor Bethany Lee Customer Service Kelly Slivkoff Juliette Baylon E-mail joelmurach@yahoo.com anne@murach.com zak@modulemedia.com judy@murach.com bethany@murach.com kelly@murach.com juliette@murach.com Total Years of Service Years of Service 22 34 4 39 10 25 1 105 Open this HTML file and run it: short_exercises\town_hall\c12x_employee_table.html Note that this HTML file uses embedded CSS in the head section to do the formatting. Expand the HTML so the table has the caption and data shown in the second table above. Expand the CSS so it does the formatting shown in the second table above. If you used classes to do the alignment and apply the colors to the cells of the table, try using pseudo-classes to get the same results.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I need to make this code look like the image I am providing. I'm providing directions also

 

 

Department
Editorial
Marketing
Customer Service
Employee Table
Name
Joel Murach
Anne Boehm
Zak Ruvalcaba
Judy Taylor
Bethany Lee
Kelly Slivkoff
Juliette Baylon
E-mail
joelmurach@yahoo.com
anne@murach.com
zak@modulemedia.com
judy@murach.com
bethany@murach.com
kelly@murach.com
juliette@murach.com
Total Years of Service
Years of Service
22
34
4
39
10
25
1
105
1. Open this HTML file and run it:
short_exercises\town_hall\c12x_employee_table.html
Note that this HTML file uses embedded CSS in the head section to do the formatting.
2. Expand the HTML so the table has the caption and data shown in the second table above.
Expand the CSS so it does the formatting shown in the second table above.
3.
4.
If you used classes to do the alignment and apply the colors to the cells of the table, try using
pseudo-classes to get the same results.
Transcribed Image Text:Department Editorial Marketing Customer Service Employee Table Name Joel Murach Anne Boehm Zak Ruvalcaba Judy Taylor Bethany Lee Kelly Slivkoff Juliette Baylon E-mail joelmurach@yahoo.com anne@murach.com zak@modulemedia.com judy@murach.com bethany@murach.com kelly@murach.com juliette@murach.com Total Years of Service Years of Service 22 34 4 39 10 25 1 105 1. Open this HTML file and run it: short_exercises\town_hall\c12x_employee_table.html Note that this HTML file uses embedded CSS in the head section to do the formatting. 2. Expand the HTML so the table has the caption and data shown in the second table above. Expand the CSS so it does the formatting shown in the second table above. 3. 4. If you used classes to do the alignment and apply the colors to the cells of the table, try using pseudo-classes to get the same results.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

I forgot to attach the orignial code. Here it is, I just need to make this code look like the image provided.

<!DOCTYPE html>

<html>

<head>
    <meta charset="utf-8">
    <title>Employee table</title>
    <style>
        body {
            width: 750px;
            margin: 0 auto;
        }
        table {
            border-collapse: collapse;
            border: 1px solid black;
            margin: 20px;
        }
        thead {
            background-color: yellow;
        }
        th, td {
            border: 1px solid black;
            padding: .2em 1em .2em .5em;
            text-align: left;
            vertical-align: middle;
        }
        .right {
            text-align: right;
        }
        tbody tr:nth-child(even) td {
            background-color: yellow;
        }
    </style>
</head>
<body>
<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>E-mail</th>
            <th class="right">Years of Service</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Joel Murach</td>
            <td>joelmurach@yahoo.com</td>
            <td class="right">22</td>
        </tr>
        <tr>
            <td>Anne Boehm</td>
            <td>anne@murach.com</td>
            <td class="right">34</td>
        </tr>
        <tr>
            <td>Zak Ruvalcaba</td>
            <td>zak@modulemedia.com</td>
            <td class="right">4</td>
        </tr>
        <tr>
            <td>Judy Taylor</td>
            <td>judy@murach.com</td>
            <td class="right">39</td>
        </tr>
        <tr>
            <td>Bethany Lee</td>
            <td>bethany@murach.com</td>
            <td class="right">10</td>
        </tr>
        <tr>
            <td>Kelly Slivkoff</td>
            <td>kelly@murach.com</td>
            <td class="right">25</td>
        </tr>
        <tr>
            <td>Juliette Baylon</td>
            <td>juliette@murach.com</td>
            <td class="right">1</td>
        </tr>
    </tbody>
</table>
</body>
</html>
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Principles of Designing
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education