simple-translate/simple-translate/popup/popup.html

27 lines
507 B
HTML
Raw Normal View History

2017-06-18 16:40:30 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2017-09-24 15:06:58 +00:00
<link rel="stylesheet" type="text/css" href="popup.css">
2017-06-18 16:40:30 +00:00
</head>
<body>
2017-09-24 15:06:58 +00:00
<div id=main>
<form>
2017-10-23 11:51:40 +00:00
<textarea id=textarea spellcheck=false contenteditable=true></textarea>
2017-09-24 15:06:58 +00:00
</form>
<hr>
<div id=target>
<p></p>
</div>
</div>
<select id="langList"></select>
<div id=link></div>
2017-10-23 11:51:40 +00:00
<script src="../Settings.js"></script>
2017-09-24 15:06:58 +00:00
<script src="popup.js"></script>
2017-06-18 16:40:30 +00:00
</body>
</html>