To multiply two binary numbers, follow the following steps:
Write down the numbers in such a way that the rightmost bit of the two numbers is lined up vertically just like the way you do in decimal.
Starting with the rightmost bit of the second number, take the first number and multiply it by each bit of the second number one at a time.
After each multiplication, shift the result one place to the left.
Write the results below the previous, starting with the rightmost multiplication.
Add all the results together to get the final product.
You should also note this
In binary, the product of 0 and 0 is 0.
In binary, the product of 1 and 0 is 0.
In binary, the product of 1 and 1 is 1.
The product of 1 and 0 is 1 in binary
Since you would add after multiplying, you should note this about base 2 addition:
1+0=1
1+1=10
0+1=1
0+0=0
1+1+1=11
1+0+1=11
1+1+0=10