31 lines
461 B
HTML
31 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<link href='../../dist/fullcalendar.css' rel='stylesheet' />
|
|
<script src='../../dist/fullcalendar.js'></script>
|
|
<script>
|
|
|
|
</script>
|
|
<style>
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
|
|
#calendar {
|
|
width: 900px;
|
|
margin: 40px auto;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id='calendar'></div>
|
|
|
|
</body>
|
|
</html>
|