Skip to main content

Answer to First Asssignment!!

OK...So you guys must have finished with your assignment...now lets see the answer to it!! 

Note:The answer is basic HTML,if you have any other answer plz mail it to jha.dwij@gmail.com and I will reply to your answer as soon as possible!!

Now lets see what is the answer for the assignment :-

<html>
<body>
<table border="1" ">
  <tr>
    <td>Percy Jackson</td>
    <td>50$</td>        
    <td>50</td>
  </tr>
  <tr>
    <td>Goosebumps</td>
    <td>20$</td>        
    <td>94</td>
  </tr>
  <tr>
    <td>HTML AND CSS BOOK %</td>
    <td>85$</td>        
    <td>80</td>
</tr>
<tr>
<td>Economics- A brief study</td>
<td>30$</td>
<td>NOT IN STOCK</td>
  </tr>
</table>
</body>

</html>

I have just added 4 books in the code...put in the fifth book in your own and if your table has some better looks or you want to share your answer with me..email me at my ID : jha.dwij@gmail.com

So in the next post we wil begin with "Comments"

Comments

Popular posts from this blog

Back Again

About four months since the last post, lets continue back with alice! I would recommend to revise the posts of alice since it is  time ! NOTE: Each and every post of this blog have labels with it , so if you want to refer to a post which is left far behind you can check the label in the right side of the blog and get all posts related to it! The NEXT ALICE POST will be arriving soon! Be prepared for learning to animate in alice!! NOTE: I will be also sharing with you some awesome tips and some sites which I find useful!!!!            Spread about this blog to your friends! NEWS: I will be soon sharing with you notes and information for ICSE till grade 10!           You will be informed about the release a few days before ! REWARD : As said before! This is the reward for this week : Want to learn code ::: then visit  Codecademy

Maths and programmig side by side...

Lets do maths and programming side by side...   We all like 3D animations...You must wondering what language must be used to make them..but we can make them by using a simple software "Alice"  So Do Download the Software ... Its is  trusted and is virus less!  Remember: Your laptop must have java if not please do download it from its original site...

Types Of List

So in the last blog, we worked on with a list called unordered list......Now we are gonna study more types of list.. Ordered list - This type of list starts with <ol> and ends with </ol>....this type of list creates auto numbers like 1,2,3,4....etc.. Now go to your notepad and update the code...the things in bold must be updated.. <html> <head> <title>My First Webpage (About dinosaurs)</title> </head> <h1>First Webpage</h1> <h2>Welcome to my Website...... <p>This is my first webpage....Hope you like it</p> <br> <br> <h2>Dinosaurs --- All about them</h2> <br> <p>We all know about dinasaurs.. There are many types of dinosaurs and some of the names are :- <ol> <li>Abelisaurus</li>  <li>Acanthopholis</li> <li>Acristavus</li>   </ol> </html>  After updating the code your result will be like this :- Did y...