Question

html Create   a   table   (using   <table>   <tr>   <td>   elements)   that   has   a   list   of   the&nbs

html

Create   a   table   (using   <table>   <tr>   <td>   elements)   that   has   a   list   of   the   classes  
and   date/time   you   are   currently   taking.   Create   a   caption   (using   <caption>  
element)   that   is   entitled   “My   School   Schedule”

0 0
Add a comment Improve this question Transcribed image text
Answer #1

<!DOCTYPE html>
<html>
<head>
<style>
table
{
font-family: arial, sans-serif;
border-collapse: collapse;
width: 80%;
}

td, th
{
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(even)
{
background-color: #dddddd;
}

</style>
</head>
<body>

<table>
<caption>My School Schedule</caption>
<tr>
<th>Classes</th>
<th>Date/Time</th>
</tr>
<tr>
<td>Mathematics</td>
<td>01 Feb 2020/ 9:00 AM</td>
</tr>
<tr>
<td>Physics</td>
<td>02 Feb 2020/ 9:00 AM</td>
</tr>
<tr>
<td>Chemistry</td>
<td>03 Feb 2020/ 9:00 AM</td>
</tr>
<tr>
<td>Computer Science</td>
<td>04 Feb 2020/ 9:00 AM</td>
</tr>

  
</table>

</body>
</html>

Screenshot of the source code:

OUTPUT:

Add a comment
Know the answer?
Add Answer to:
html Create   a   table   (using   <table>   <tr>   <td>   elements)   that   has   a   list   of   the&nbs
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • You will use your text editor to create a table and apply table styles. First, you...

    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....

  • HTML/CSS: Modify the table you created in hands-on exercise 8.1 to be centered on the page,...

    HTML/CSS: Modify the table you created in hands-on exercise 8.1 to be centered on the page, use a background color of #CCCC99, and display text in arial or the browser default sans-serif font. Configure this table using CSS instead of obsolete HTML attributes. Place an e-mail link to yourself on the web page. Save the file as mytable.html. HERE IS THE CODE FOR 8.1: <!DOCTYPE html> <html lang="en"> <head> <title>Practice with Tables</title> <meta charset="utf-8"> </head> <body> <table border="1" > <caption>School...

  • <table> <tr> <th>Assignment</th> <th>Points</th> <th>Due Date</th> </tr> <tr> <td>Project 1</td> <td>120</td> <td>Feb 2</td> <</tr> <tr> <td&

    <table> <tr> <th>Assignment</th> <th>Points</th> <th>Due Date</th> </tr> <tr> <td>Project 1</td> <td>120</td> <td>Feb 2</td> <</tr> <tr> <td>Project 2</td> <td>220</td> <td>Mar 2</td> </tr> </table> The code above will create a table that has: O 2 columns and 3 rows O 3 columns and 2 rows 2 columns and 2 rows 3 columns and 3 rows

  • Hello, Using HTML/Javascript, can somebody help me create an array and fill with random numbers 1-100,...

    Hello, Using HTML/Javascript, can somebody help me create an array and fill with random numbers 1-100, per the number entered in the "Create Array" box of my html, and have it display when the "Create Array" box is clicked? Here is the HTML for this portion: Thank you! <table style="width: 850px; height: 154px;" border="0"> <tbody> <tr> <td>Enter Array Size:<input style="width: 50px;" type="textbox" value="100" /><input type="button" value="Create Array" /></td> </tr> This is what the HTML looks like: Enter Array Size:100 Create...

  • How to make all the buttons work using javascript? <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta...

    How to make all the buttons work using javascript? <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script> function openAccount() { /* - get the account and initial amount values - check that all necessary information is provided - call the setCookie function to create account */ } function Deposit() { /* - get the account and amount values - check that all necessary information is provided - alter cookie with current amount of deposit */ } function...

  • Below is the code created for a previous assignment. I now need to create functions to...

    Below is the code created for a previous assignment. I now need to create functions to validate the name, age, and item selection in an external JavaScript file. Specifically, check for the following: The user has entered a name Age is a number between 18 and 110 An item is selected Ensure that a handler returns true if the input is acceptable and false otherwise. Add an onSubmit attribute to the form tag so that a validation failure prevents the...

  • <!-- Title: Week2 Lab2 Author: Lovcita Jean-Michel Date: 07/18/2020 --> <!DOCTYPE html> <html lang="en"> <head> <meta...

    <!-- Title: Week2 Lab2 Author: Lovcita Jean-Michel Date: 07/18/2020 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title> Week2 Lab2 </title> </head> <body> <h1> Video Call Platforms </h1> <h2> Top Competition in Education </h2> <p> There are many companies competing to be platform of choice for viraleducation.Below are a few of the choices that schools may use. <ul> <li> Zoom </li> <li> Google Meet </li> <li> Microsoft Teams </li> </ul> <h2> Free Plan Details </h2> <p> Each platform offers free...

  • 1. Print out information of PHP use phpinfo() function. 2. Write a program that check and...

    1. Print out information of PHP use phpinfo() function. 2. Write a program that check and print odd / even numbers (from number 1 to 100 using for/while loop). Display the results within an HTML table with 2 columns as shown below: NUMBERS RESULTS 1 ODD 2 EVEN 3 ODD HINT: use <table> tags to create a table, <th> tags for ‘Numbers’ and ‘Results’. Wrap code PHP inside HTML code. For example: ​<html> ​​<title>CHECK ODD or EVEN</title> ​​<body> ​​​<table> ​​​​<?php...

  • I have to make a pixel art maker using javascript. HTML and CSS were already provided....

    I have to make a pixel art maker using javascript. HTML and CSS were already provided. I only had to do the JavaScript part. Every time I run the HTML folder nothing happens when I choose the width, height, and color. This is my code: (ONLY JS IS SUPPOSED TO BE FIXED). JS: // Select color input // Select size input const colorPicker = document.getElementsById('colorPicker'); const rowNum = document.getElementsById('inputHeight'); const cellNum = document.getElementById('inputWidth'); const pixelCanvas = document.getElementById('pixelCanvas'); const form =...

  • Develop an HTML form that could be used to enter your book information (Books, Authors, and...

    Develop an HTML form that could be used to enter your book information (Books, Authors, and Publishers) start with the HTML/JavaScript template provided Expand upon it! What field information would you enter into a system? Have your form use more then just character text fields ... radio buttons, pick lists, and other elements make your form easier to use and you don't need to do lots of JavaScript checks. What fields would be mandatory ... which could be left blank?...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT