If Javascript is not enabled on the browser then a text showing `Your browser does not support JavaScript!` will be displayed to the User.
16 lines
310 B
HTML
16 lines
310 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'/>
|
|
<title>Name Suggestion Index</title>
|
|
<link rel='stylesheet' href='./style.css'/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='root' class='hasRows'></div>
|
|
<script src='./src/index.jsx'></script>
|
|
<noscript>Your browser does not support JavaScript!</noscript>
|
|
</body>
|
|
|
|
</html>
|