-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 944 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>InsideOut Calendar</title>
<link rel="stylesheet" href="bower_components/fullcalendar/dist/fullcalendar.css" media="screen" title="no title" charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/style.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<section>
<h1>
<img id="title" src="assets/insideout-calendar.svg" alt="InsideOut Calendar" />
</h1>
<div id="calendar"></div>
</section>
<script src="bower_components/jquery/dist/jquery.min.js" charset="utf-8"></script>
<script src="bower_components/moment/min/moment.min.js" charset="utf-8"></script>
<script src="bower_components/fullcalendar/dist/fullcalendar.min.js" charset="utf-8"></script>
<script src="assets/app.js" charset="utf-8"></script>
</body>
</html>