First commit
diff --git a/options.html b/options.html
new file mode 100644
index 0000000..414cfff
--- /dev/null
+++ b/options.html
@@ -0,0 +1,22 @@
+<html>
+	<head>
+		<title>Options</title>
+		<meta charset="UTF-8">
+		<script src="options.js"></script>
+		<link rel="stylesheet" type="text/css" href="options.css">
+		<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
+	</head>
+	<body>
+		<h1 id="welcome"></h1>
+		<p id="introduction"></p>
+		<h2 id="languageselectheader"></h2>
+		<div id="languages"></div>
+		<h2 id="otheroptionsheader"></h2>
+		<div id="otheroptions">
+			<input type="radio" name="uniquetab" id="varioustabs" value=""> <label id="varioustabs_label" for="varioustabs"></label><br>
+			<input type="radio" name="uniquetab" id="uniquetab" value="yep"> <label id="uniquetab_label" for="uniquetab"></label><br>
+			<input type="radio" name="uniquetab" id="panel" value="panel"> <label id="panel_label" for="panel"></label>
+		</div>
+		<button id="save"></button>
+	</body>
+</html>