Difference between revisions of "Code Documentation"
Line 38: | Line 38: | ||
<h3> Creating a Page</h3> | <h3> Creating a Page</h3> | ||
+ | |||
+ | |||
+ | <p> To create a Page that will use a side menu use: </p> | ||
+ | <pre> {{2015CSS}} | ||
+ | <html> | ||
+ | <!-- change the page title --> | ||
+ | <div id="pageTitle"> | ||
+ | <h2> Starting a team</h2> | ||
+ | </div></div> | ||
+ | <div id="grayLine_Clear"></div> | ||
+ | |||
+ | <div id="leftColumn"> | ||
+ | |||
+ | <!-- this is where the submenu is placed --> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div id="rightColumn"> | ||
+ | <!-- alert message, the text can be edited --> | ||
+ | <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. | ||
+ | <br>Please check back often for details. </p></div> | ||
+ | <!-- start of content ----------------------------------------> | ||
+ | |||
+ | ********** Your html should be placed here. ********** | ||
+ | |||
+ | <!-- end of content ----------------------------------------> | ||
+ | </div> | ||
+ | <div class="clear"></div> | ||
+ | </html> {{2015Footer}}<html> | ||
+ | </div> | ||
+ | </html> | ||
+ | </pre> | ||
+ | |||
+ | <br><br> | ||
<p> To create a Page that will use a side menu use: </p> | <p> To create a Page that will use a side menu use: </p> |
Revision as of 21:44, 30 January 2015
This page documents and explains the CSS and HTML used in the 2015 site.
Creating a Page
To create a Page that will use a side menu use:
{{2015CSS}} <html> <!-- change the page title --> <div id="pageTitle"> <h2> Starting a team</div> <div id="grayLine_Clear"></div> <div id="leftColumn"> <!-- this is where the submenu is placed --> </div> <div id="rightColumn"> <!-- alert message, the text can be edited --> <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. <br>Please check back often for details. </p></div> <!-- start of content ----------------------------------------> ********** Your html should be placed here. ********** <!-- end of content ----------------------------------------> </div> <div class="clear"></div> </html> {{2015Footer}}<html> </div> </html>
To create a Page that will use a side menu use:
{{2015CSS}} <html> <!-- change the page title --> <div id="pageTitle"> <h2> Starting a team</div> <div id="grayLine_Clear"></div> <div id="leftColumn"> <!-- this is where the submenu is placed --> </div> <div id="rightColumn"> <!-- alert message, the text can be edited --> <div id="alertMessage"> <p> Please note that all information on this page is in a draft version. <br>Please check back often for details. </p></div> <!-- start of content ----------------------------------------> ********** Your html should be placed here. ********** <!-- end of content ----------------------------------------> </div> <div class="clear"></div> </html> {{2015Footer}}<html> </div> </html>