Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Creating a HTML table.

Creating a HTML table. When you write an article in WordPress, Blogger etc., it may need to make a Table. But you don’t know how to create it. You can create a html table by using html code. Here is the code. Change the RED mark.
<table border="2" style="width:50%">
  <tr>
    <td>Kamal</td>
    <td>Hasan</td>        
    <td>50</td>
  </tr>
  <tr>
    <td>Mina</td>
    <td>Ranu</td>        
    <td>94</td>
  </tr>
  <tr>
    <td>Kalam</td>
    <td>Jasmine</td>        
    <td>80</td>
  </tr>
</table>
If you need more rows, simply copy & paste the following code
<tr>
    <td>Kamal</td>
 before
</table>
and change Kamal. This way you can create more and more rows.
টেবিলটি দেখতে এরকম হবে: (Preview the Table)

Kamal
Hasan
50
Mina
Ranu
94
Kalam
Jasmine
80
 অনলাইনে কোন লিখার সময় যদি টেবিল তৈরীর প্রয়োজন হয়, তখন কি করবেন।এ জন্য উপরের কোডটি দিলাম। কেবল লাল চিহ্নিত অংশটুকু চেঞ্জ করে দিলেই হবে।

আরো বেশী রো দরকার হলে
</table>
 এর উপরে  
<tr>
    <td>Kamal</td>
 কোডটি বসিয়ে দিন। আরো রো তৈরী হয়ে গেল। এভাবে আপনি ইচ্ছেমতো রো তৈরী করতে পারবেন।







Scrolling your blogger 'Head Lines' as slide show.

You have a blog but you don't know how to scroll the headlines of your blog posts. You need some code for this. Copy the following code and paste it to your blogger blog by a Widget. Note: Change the red mark url.

আপনার ব্লগস্পট সাইটের পোষ্টগুলোর স্লইডশো করতে পারেন। এজন্য নিচের কোডটি Widget এর মাধ্যমে আপনার সাইডবারে পোষ্ট করুন। তবে লাল চিহ্নিত স্থানে আপনার ব্লগের লিংকটি দিয়ে দিন। আর কিছুই করতে হবে না।

<marquee direction="up" onmouseout="this.start()" onmouseover="this.stop()" scrollamount="2"><script src="http://dl.dropbox.com/u/16021475/headlines.js">
</script><script>var numposts = 15;var showpostdate = false;var showpostsummary = true;var numchars = 80;var standardstyling = true;</script>
<script src="http://yourdomain.blogspot.com/feeds/posts/default?orderby=published&amp;alt=json-in-script&amp;callback=showrecentposts"></script><scriqt>
<ul><span style="font-family: verdana,tahoma,arial; font-size: 55;"></span></ul>
<!--NoEdit--></scriqt></marquee>