Skip to content

Commit 2f4787f

Browse files
committed
Fix issues caught with an HTML validator
https://validator.w3.org/nu/#textarea
1 parent 038f0cb commit 2f4787f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<link rel="icon" href="favicon.png" />
88
<script src="lib/coffeescript.js"></script>
99
<script src="lib/grapheme-splitter.js"></script>
10-
</head>
11-
<body>
1210
<style>
1311
html,
1412
body {
@@ -92,7 +90,7 @@
9290
color: inherit;
9391
}
9492
#copied-to-clipboard {
95-
pointer-events: hidden;
93+
pointer-events: none;
9694
background-color: #00c030;
9795
color: white;
9896
border-radius: 100px;
@@ -137,6 +135,8 @@
137135
flex-grow: 0.1;
138136
}
139137
</style>
138+
</head>
139+
<body>
140140
<header>
141141
<h1>ASCII Hypercube</h1>
142142
<!-- <h2>Create hyperrectangular ASCII art</h2> -->
@@ -173,7 +173,7 @@ <h3>Output</h3>
173173
Format for Markdown (Reddit, etc.)
174174
</label>
175175
</span>
176-
<div style="pointer-events: none"></div>
176+
<div style="pointer-events: none">
177177
<span id="copied-to-clipboard" aria-hidden="true" role="alert">Copied to Clipboard</span>
178178
</div>
179179
</div>

0 commit comments

Comments
 (0)