-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 946 Bytes
/
index.html
File metadata and controls
42 lines (41 loc) · 946 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Superˢᶜʳᶦᵖᵗ Generator</title>
</head>
<body>
<h1>Super<sup>script</sup> Generator</h1>
<!--<input type="text" oninput="newTextEntered(this)"/>-->
<textarea placeholder="Enter text here" oninput="newTextEntered(this)"></textarea>
<br>
<br>
<!--<p>Text in sup: <sup id="supText">hi</sup></p>-->
<div>
Before Superscript<sup id="supText">{text will show up here}</sup>
<br>
</div>
</body>
<script src="script.js"></script>
<style>
body{
text-align: center;
background-color: #ffdd82;
}
textarea{
width: 100%;
height: 400px;
resize: none;
border: darkorange 3px solid;
border-radius: 10px;
}
h1{
font-family: Arial, Helvetica, sans-serif;
}
div{
background-color: yellow;
border-color: orange;
border-radius: 10px;
}
</style>
</html>