0% found this document useful (0 votes)
74 views4 pages

Q14. Make A Calendar of August Month in HTML

The document contains the code for an HTML calendar for the month of August. The calendar uses a table with rows and columns to display the days of the month numbered 1-31 in cells. Specific dates are highlighted in pink or have background images. The calendar also includes styling with colors, fonts and alignment applied through HTML tags.

Uploaded by

saqibmubarak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views4 pages

Q14. Make A Calendar of August Month in HTML

The document contains the code for an HTML calendar for the month of August. The calendar uses a table with rows and columns to display the days of the month numbered 1-31 in cells. Specific dates are highlighted in pink or have background images. The calendar also includes styling with colors, fonts and alignment applied through HTML tags.

Uploaded by

saqibmubarak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Q14. Make a calendar of August month in HTML.

<HTML>
<HEAD>
<TITLE align=center>CALENDAR</Title>
</HEAD>
<BODY>
<H1 align=center><B>AUGUST</B></H1>
<br> <br> <br>
<table border="4" bgcolor="silver" align=center cellpadding=20>

<tr>
<th bgcolor="pink"><font color="red">Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th bgcolor="pink"> <font color="red">Saturday</th>
</tr>

<tr>
<td bgcolor="pink"></td>
<td> </td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td bgcolor="pink"><font color="red"><b>5</b></td>
</tr>

<tr>
<td bgcolor="pink"><font color="red"><b>6</b></td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td bgcolor="pink"><font color="red"><b>12</b></td>
</tr>

<tr>
<td bgcolor="pink"><font color="red"><b>13</b></td>
<td background="janmashtami.jpg">14</td>
<td background="flag.jpg">15</td>
<td>16</td>
<td>17</td>
<td>18</td>
<td bgcolor="pink"><font color="red"><b>19</b></td>
</tr>

<tr>
<td bgcolor="pink"><font color="red"><b>20</b></td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td bgcolor="pink"><font color="red"><b>26</b></td>
</tr>

<tr>
<td bgcolor="pink"><font color="red"><b>27</b></td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
<td> </td>
<td bgcolor="pink"> </td>
</tr>
</table>
</BODY>
</HTML>

You might also like