Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Lab 3: Creating Schedules Probem: You want to create a Web page and an external

ID: 3599837 • Letter: L

Question

Lab 3: Creating Schedules Probem: You want to create a Web page and an external style sheet that lists your piano practice volunteer schedule,similar to the one shown in Figure 4-49. The Web page will use a table with that span several rows and columns to organize the information. In the Lab 2 In the web page, create a bordered table that displays in 90% of the browser, as shown in Figure 449 3. Insert an inline style into the tag that assigns the border a color of #l 94a70, a border with Instructions Perform the following steps: 1. Start a new HTML file with the title Lab 4-3 in the main heading section. radius property (See Appendix D). The radius should be 25 pixels 4. Inclade the headings and data cells as shown, with valid information (i.e., real ays and times as of 20 pivels, and a border style of groove. Give the table a rounded-edge look by using the border per a normal schedule of activities) in the data cells. The main headings (Piano Practice Schedule and Kid Camp Schedale) should be center-aligned across three columns and have a line height of 50 pinelk The dat, ther than the main headings, will have an indent of 10 pixels when the style sheet is coded and attached. App 1: Fi ”.. Page. Safety. Toch PIAND PRACTICE S for dis SCHEDULE Time Time 1 Tiene 2 on your re Tine 3 Tiene 4 Creati lab4-3styles.css sheet sets stylet for Web page Figure 4-49

Explanation / Answer

<!DOCTYPE html>
<html>
<head>
<style>


#rcorners2 {
border-radius: 25px;
border: 15px solid #194a70;
padding: 20px;
width: 900px;
height: 450px;   
}


</style>
</head>
<body>

<center><h1>

<table id="rcorners2">

<tr><th>pianio practice schedule</th></tr>
<tr><th><p align="left"> <img src="smiley.gif" alt="Smiley face" width="42" height="42"> </p></th></tr>
<tr>
<th>Day Of The Week </th>
<th> Time</th>
</tr>

<tr>
<td bgcolor="#194a70">day1 </td>
<td bgcolor="#194a70"> time1</td>
</tr>

<tr>
<td bgcolor="white">day2 </td>
<td bgcolor="white"> time2</td>
</tr>

<tr>
<td bgcolor="#194a70">day3 </td>
<td bgcolor="#194a70"> time3</td>
</tr>

<tr>
<td bgcolor="white">day4 </td>
<td bgcolor="white"> time4</td>
</tr>

<tr><th>kid camp schedule</th></tr>
<tr>
<th>Day Of The Week </th>
<th> Time</th>
</tr>

<tr>
<td bgcolor="yellow">day1 </td>
<td bgcolor="yellow"> time1</td>
</tr>

<tr>
<td bgcolor="white">day2 </td>
<td bgcolor="white"> time2</td>
</tr>

<tr>
<td bgcolor="yellow">day3 </td>
<td bgcolor="yellow"> time3</td>
</tr>

<tr>
<td bgcolor="white">day4 </td>
<td bgcolor="white"> time4</td>
</tr>


</table>


  


</h1>


</center>

</body>
</html>