-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
48 lines (48 loc) · 2.38 KB
/
about.html
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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About - Ganit</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/ganit.js"></script>
</head>
<body>
<section id="page">
<header>
<hgroup>
<h1>
Ganit
<span>the Web Based MathML Graphical Editor</span>
</h1>
</hgroup>
<nav class="clear">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="about.html">About</a>
</li>
</ul>
</nav>
</header>
<section id="content">
<p>
The purpose of this project Ganit is to create a graphical equation editor for MathML. The technology at the heart of Ganit is MathML, the XML standard for representing mathematical notation. Its user interface will be developed using HTML, CSS, JavaScript and MathML so user can select and create mathematical notation.
We will use a graphical equation editor to build equations from predefined mathematical structural elements. This process is very dependent on the use of the mouse and keyboard.
</p>
<p>
It will provide create, edit, display and accessibility of mathematical notation for websites.
The intended users of this software are people who have limited technical knowledge in MathML but want to publish mathematical equations on the web easily and efficiently. We have chosen the browser as the editor to make the software cross-platform, easily and widely available.
</p>
<p>
Ganit will be an open source project and source code will be hosted on
<a href="https://github.com/manojyadav/ganit" target="_blank">https://github.com/manojyadav/ganit</a>
</p>
</section>
<div class="clear"></div>
<footer>Copyright ©2011 - Ganit</footer>
</section>
</body>
</html>