• create a web page to display the details of your classmates in tabular format.
• set the background colour of the web page to yellow and the top margin of the web page to 75.
• set table border size to 3 pixels and border colour to 'green'.
• table height should be 250 pixels and width should be 500 pixels.
• create 5 columns in the table named as S.no, Name, birthday, e-mail id, phone no. the caption of the table should be My Classmates, Apply heading style 1 to it.
• create five rows in the table and enter records of your five classmates.
• set the background colour and border colour of the heading row to pink and green, respectively.
• set CellPadding of the table to 5.
And everyone I want the HTML coding of this picture and instructions are given above please kindly help me i will mark him as brainiliest
Answers
Answer:
Explanation:
You can switch to using a dedicated HTML or CSS editor, that helps you set ... The resulting HTML page, with colors and layout, all done with CSS. ... But for your very first CSS style sheet, it is good not to be distracted by too ... Site navigation menu --> <ul class="navbar"> <li><a href="index.html">Home ...
Answer:
The following HTML tags can be used to make the desired results:
To set the background colour yellow - <TR BORDERCOLOR="YELLOW">
Top margin of the webpage to 75 - <BODY TOPMARGIN="75">
Set table border size to 3 pixels and border colour to green and
table height and width - <TABLE BORDER="3" height="250" WIDTH="500" BORDERCOLOR="GREEN" CELLPADDING="5">
Creating columns and rows - <TH></TH>, <TD></TD>, <TR></TR>
Explanation:
<HTML>
<HEAD><TITLE>CREATE A TABLE</TITLE></HEAD>
<BODY TOPMARGIN="75">
<H1 ALIGN="CENTER">MY CLASSMATES</H1></CENTER>
<CENTER>
<TABLE BORDER="3" height="250" WIDTH="500" BORDERCOLOR="GREEN" CELLPADDING="5">
<TR BGCOLOR="PINK" BORDERCOLOR="GREEN">
<TH>S.NO.</TH><TH>NAME</TH><TH>BIRTHDAY</TH><TH>E-MAIL ID</TH><TH>PHONE NO.</TH>
</TR>
<TR BORDERCOLOR="GREEN">
<TD>1</TD><TD>NITIN</TD><TD>12 JUNE</TD><TD>[email protected]</TD><TD>22345774</TD>
</TR>
<TR BORDERCOLOR="GREEN">
<TD>2</TD><TD>KOUSTAV</TD><TD>5 MAY</TD><TD>koustav149@gmail.com</TD><TD>2581675</TD>
</TR>
<TR BORDERCOLOR="GREEN">
<TD>3</TD><TD>PRASUN</TD><TD>12 APRIL</TD><TD>prasun@yahoo.in</TD><TD>2935675</TD>
</TR>
<TR BORDERCOLOR="YELLOW">
<TD>4</TD><TD>BAPIN</TD><TD>09 MARCH</TD><TD>bip123@gmail.com</TD><TD>2223547</TD>
</TR>
<TR BORDERCOLOR="GREEN">
<TD>5</TD><TD>SAHIL</TD>01 JULY<TD></TD><TD>Sahil@yahoo.in</TD><TD>2453547</TD>
</TR>
</TABLE>
</BODY:
</HTML>
To learn more about HTML tags:
https://brainly.in/question/18624559
To learn more about gmail:
https://brainly.in/question/13854249
#SPJ3