Say for example I have my name as the author:
/**
 * @author: Jacques Marais
 */
How can I include my website, my license and my copyright in my DocBlock? Which tags should I use?
Also what tags is the most common tags and how do I use them?
                        
                            
                        
                        
                            On
                            
                            
                                                    
                    
                Copy from CodeIgniter
/**
 * CodeIgniter
 *
 * An open source application development framework for PHP 5.1.6 or newer
 *
 * @package     CodeIgniter
 * @author      ExpressionEngine Dev Team
 * @copyright   Copyright (c) 2008 - 2011, EllisLab, Inc.
 * @license     http://codeigniter.com/user_guide/license.html
 * @link        http://codeigniter.com
 * @since       Version 1.0
 * @filesource
 */
                        
Here is an example:
You can read the manual with detailed explanations here.