How to make featured area?

You need an update method which saves your widget settings:

function update( $new_instance, $instance ) {
    for ( $i=0; $i < 3; $i++ )
        $instance[ "link_target_$i" ] = $new_instance[ "link_target_$i" ];

    return $instance;
}