-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GfycatIdCamelCaser</title>
<meta name="description" content="Turns Gfycat's lowercase ID (adjectiveadjectiveanimal) to CamelCase formatted ID (AdjectiveAdjectiveAnimal). The example: lazyfatcat turns to LazyFatCat.">
<link rel="stylesheet" href="style.css">
<script type="module" src="js/index.js"></script>
<!-- To hide the warning when you use iframe API `?iframe=true`-->
<!-- <link rel="preload" href="js/words-handler.js" as="script" crossorigin>-->
</head>
<body>
<div class="column">
<div>
<h1 style="display: none"></h1> <!--To satisfy Lighthouse-->
<div>
<label>
<input type="text" placeholder="Type here" title="Example: lazyfatcat">
</label>
</div>
<div id="result" class="empty"> </div> <!-- Alt+0160 -->
</div>
<div id="readme"><a target="_blank" rel="noopener noreferrer" href="https://github.com/AlttiRi/gfycat-id-camel-caser#readme">Readme</a></div>
</div>
</body>
</html>