- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
42 lines (41 loc) · 946 Bytes
/
Copy pathindex.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>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>Superˢᶜʳᶦᵖᵗ Generator</title>
</head>
<body>
<h1>Super<sup>script</sup> Generator</h1>
<!--<input type="text" oninput="newTextEntered(this)"/>-->
<textareaplaceholder="Enter text here" oninput="newTextEntered(this)"></textarea>
<br>
<br>
<!--<p>Text in sup: <sup id="supText">hi</sup></p>-->
<div>
Before Superscript<supid="supText">{text will show up here}</sup>
<br>
</div>
</body>
<scriptsrc="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>