Question

Q2: Write HTML code for the following layout... 4 marks] Participants stu In Phone Course Grade Name ABC XYZ +1 (023) 4585867 BIT123 1 (034) 56789 BIT234 Send email at info@ecmit.ac.ae [6 marks Q3: Write the output of the following codes. A. <script var text = ; var i 0; while(i < 3) { text +<br> The number is +i; document.write(text); </script
0 0
Add a comment Improve this question Transcribed image text
Answer #1

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<!-- Heading -->
<h4><center>Participants</center></h4>

<!-- width is 100% to cover the whole tab -->
<table border = 1 width= "100%">
   <!-- First row in the table is header -->
<tr>
<th>Name</th>
<th>Phone</th>
<th>Cource</th>
<th>Grade</th>
</tr>
  
   <!-- First row to have data -->
<tr>
   <td>ABC</td>
   <td>+1 (023) 4585867</td>
   <td>BIT123</td>
   <td>A</td>
</tr>
  
<!-- Second row to have data -->
<tr>
   <td>XYZ</td>
   <td>+1 (034) 56789</td>
   <td>BIT234</td>
   <td>B</td>
</tr>
</table>

<p>Send email at</p>
<!-- Unordered list <ul> gives a dot and list item <li> gives email here-->
<ul>
   <li>[email protected]</li>
</ul>
</body>
</html>

Participants Name ABC XYZ Phone Cource Grade +1 (023) 4585867 +1 (034) 56789 BIT123 BIT234 Send email at info@ecmit.ac.ae
Add a comment
Know the answer?
Add Answer to:
Q2: Write HTML code for the following layout... 4 marks] Participants stu In Phone Course Grade...
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
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