-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
53 lines (51 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<link
rel="shortcut icon"
href="https://i.imgur.com/mKqNMmd.png"
type="image/x-icon"
/>
<meta charset="UTF-8" />
<meta
name="description"
content="This is an Assembly code highlighter where you can paste your code and generate copyable highlighted code for assembly language. It supports almost all the popular assemblers (NASM, MASM, etc.)."
/>
<meta
name="keywords"
content="syntax highlighter, assembly, masm, nasm, code, assembly highlighter, online, free"
/>
<meta name="author" content="najmiter" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chitter - A syntax highlighter for assembly</title>
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
</head>
<body>
<main>
<header id="top">
<button id="btn-highlight">Koochi Koochi</button>
<select id="tab-size">
<option value="">Tab size</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</header>
<div id="two-sections">
<div id="input" class="texts">
<textarea
spellcheck="false"
placeholder="Type or paste your assembly code..."
id="input-text"
></textarea>
</div>
<div id="output" class="texts">
<div spellcheck="false" contenteditable="true" id="output-text"></div>
</div>
</div>
</main>
</body>
</html>