-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·26 lines (24 loc) · 798 Bytes
/
index.html
File metadata and controls
executable file
·26 lines (24 loc) · 798 Bytes
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
<!DOCTYPE html>
<html >
<head>
<meta name="description" content="A Feynman diagram generator" />
<meta name="keywords" content="Feynman,diagram,graph,physic,physics" />
<meta name="author" content="FGJL team" />
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style/styleMain.css" rel="stylesheet" media="all" type="text/css">
<script type="text/javascript" src="js/d3.v2.min.js"></script>
<script type="text/javascript" src="js/FGJL.js"></script>
<title>FGJL</title>
</head>
<body>
<h1 id="MainTitle">FGJL</h1>
<div id="ChoiceZone">
</div>
<div id="DrawZone">
</div>
<script>
FGJL("DrawZone");
</script>
</body>
</html>