Sample Code:
trigger AccountTrigger on Account ( before update ) {
for ( Account acc : trigger.new ) {
acc.Rich_Text_Area__c = ‘Updated on <br/>’ + System.now();
}
}
for ( Account acc : trigger.new ) {
acc.Rich_Text_Area__c = ‘Updated on <br/>’ + System.now();
}
}