How to create a Presentation in ColdFusion

cfpresentation - create presentation

cfpresentation.cfm


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfpresentation tag: how to use cfpresentation in coldfusion</title>
</head>

<body>

<cfpresentation title="Image Viewer">
 <cfpresentationslide title="Cat Image" duration="10">
        <h3 style="color:DeepPink; font-style:italic;">
   Cat Image        
        </h3>
     <img src="Images/Cat.jpg" />
    </cfpresentationslide>
 <cfpresentationslide title="Rat Image" duration="10">
        <h3 style="color:Crimson; font-style:italic;">
   Rat Image        
        </h3>
     <img src="Images/Rat.jpg" />
    </cfpresentationslide>
</cfpresentation>

</body>
</html>









More ColdFusion examples