-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.27 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
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Text Diff</title>
<meta name="Elar Saks" content="SitePoint">
<meta name="viewport" content="width=device-width">
<meta property="og:image" content="./some2.png" />
<meta property="og:title" content="Text Diff LCS" />
<meta property="og:description"
content="Longest Common Subsequence algorithm implementation in vanilla JavaScript." />
<meta property="og:url" content="https://elarsaks.github.io/text-diff" />
<meta property="og:type" content="website" />
<meta name="google-site-verification" content="JF15ZtPM1uHo3jSkwn0cSU_Eo61F9sqekl5cUo3x85A" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="top-bar">Text Diff </div>
<div id="content-container">
<textarea id="left-input" placeholder="Write here some text to compare."></textarea>
<textarea id="right-input" placeholder="Write here some text to compare against."></textarea>
<div id="compare-button"> COMPARE</div>
<div id="output"></div>
</div>
<h1>
<a href="https://github.com/elarsaks/text-diff" target="_blank">SOURCE CODE</a>
</h1>
<script src="./script.js"></script>
</body>
</html>