Documentation
Our website employs a number of different technologies as well as a library of custom code to generate and display web content. This collection of pages is intended to give web content providers information on how to access and use these tools. In order to use our custom tools effectively, web content providers should familiarize themselves with the following technologies:
Languages
- HTML Hyper-text Markup Language
- CSS Cascading Style Sheets
- JavaScript
JavaScript Frameworks
Content Management System
Code Samples
This section will show many pieces of example code. Here's what you can expect them to look like:
HTML
<html> <head> <title>Simple Page</title> </head> <body> <a href="http://www.montclair.edu">Montclair State University</a> </body> </html>
CSS
body {
background-color: #FFFFFF;
color: #000000;
font-family: sans-serif;
font-size: 14px;
}
JavaScript
function helloWorld() {
alert("Hello World!");
}