-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="trstyle.css" />
</head>
<body>
<div class="spellSpace">
<div class="top">
<h2>
<input type="text" id="userInput" />
<div id="spell">
<button id="spellBt" class="learn-more" onclick="showSyllables();">
SEPARAR!
</button>
</div>
</h2>
</div>
<div class="bottom">
<h1 class="printers" id="texto"></h1>
<h3 class="wordAnalysis" id="textoDiptongo"></h3>
<h3 class="wordAnalysis" id="textoHiato"></h3>
<h3 class="wordAnalysis" id="textoTriptongo"></h3>
<div></div>
<script src="js/trjs.js"></script>
<script src="js/browserIntegration.js"></script>
<script src="js/splittingRules.js"></script>
<script src="js/wordAnalysis.js"></script>
<script src="js/test.js"></script>
</div>
</div>
</body>
</html>