Arrange the numbers from smallest to largest:
0,0,1,1,1,2,2,3,3,4,6
Split the data in the middle, since there is an odd amount of numbers take an even amount on each side:
0,0,1,1,1,2,2,3,3,4,6
Lower half: 0,0,1,1,1
Higher half: 2,3,3,4,6
1st quartile is the middle value of the lower half: 1
3rd quartile is the middle value of the higher half: 3