-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·44 lines (44 loc) · 2.26 KB
/
index.html
File metadata and controls
executable file
·44 lines (44 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html>
<head>
<title>Calendar</title>
<meta charset="utf-8">
<meta lang="en">
<meta name="Author" content="Michael Evanson">
<meta name="About" content="Event Calender">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Simple Event Calendar</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="grid.html">Calendar</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-3 sidenav">
<i class="fa fa-external-link"></i>
<a target="_blank" href="https://en.wikipedia.org/wiki/Calendar#Calendars_in_use">
<img src="https://pixabay.com/static/uploads/photo/2013/07/13/12/14/independence-day-159462_960_720.png" alt="Image of a calendar. Links to wikipedia. From pixabay.com. Labelled for reuse"/>
</a>
<p>Image of a calendar. From pixabay.com. Labelled for reuse</p>
<p> For more information on Calendars please click <a target="_blank" href="https://en.wikipedia.org/wiki/Calendar#Calendars_in_use">here <i class="fa fa-external-link"></i></a></p>
</div>
<div class="col-sm-9">
<h1>Event Calendar</h1>
<h3>This is a page to describe the functions of an event calendar</h3>
<p>
A calendar is a system for marking days. In particular it marks pre-agreed upon days. An event calendar also associates
days of the year or month with events. This one will allow you to add events and will have a ToDo tracker
</p>
</div>
</body>
</html>