CFML
The following output will be displayed with whatever HTML formatting is inserted inside the <cfoutput> </cfoutput> tags. So if we wanted to apply HTML formatting to one of the output fields in the previous example, we would do so like this:
<cfoutput query=“student_list”>
<B> #studentID#</B> -- #studentName#
The <B></B> tags around the #studentID# output field will apply a “Bold” font style to that particular field.