-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 1.16 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CS376 Project</title>
<link href="normalize.css" rel="stylesheet" type="text/css">
<link href="styles.css" rel="stylesheet" type="text/css">
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<!-- <meta name="viewport" content="width=device-width"> -->
<meta name="viewport" content="width=device-width">
<link rel="apple-touch-icon" href="touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" href="touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="touch-icon-iphone-retina.png" />
<link rel="apple-touch-icon" sizes="144x144" href="touch-icon-ipad-retina.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<div id="container">
<svg id="mainsvg">
<rect />
<foreignObject id="formobject">
<form name="noteForm" onSubmit="return handleClick()">
<textarea id="note"></textarea><br />
<input name="Submit" type="submit" value="Create!" id="submit"></input>
</form>
</foreignObject>
</svg>
</div>
</body>
<script src="script.js" charset="utf-8"></script>
</html>