Head Design Area

Last Updated: 03 Jan 2018

design_area_head|asset|5.4.4.0

This design area allows assets to print HTML in the head area of your page. For example, the Calendar Page asset uses this design area to print its default style sheet defining the look and feel of the calendar. The code that is required for the Head design area is shown below.

<MySource_AREA id_name="head" design_area="head" />

An example of its usage is shown below.

<html>
  <head>
    <MySource_AREA id_name="head" design_area="head" />
    <link rel="stylesheet" src="myNormalCss.css" />
  </head>
  <body>
    Body
  </body>
</html>