yomichan/test/data/html/test-document2-frame1.html
toasted-nutbread 9e83faa02c
Html lint (#1336)
* Move style rules

* Fix non-unique IDs

* Remove erroneous ids

* Add title

* Fix invalid closing tag

* Install html-validate

* Add .htmlvalidate.json

* Update HTML and styles

* Add test-lint-html

* Update test files

* Update test-lint-html/css commands to have more explicit targets
2021-01-30 20:44:54 -05:00

40 lines
864 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Yomichan Tests</title>
<script src="test-document2-script.js"></script>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
padding: 0;
margin: 0;
background-color: #f8f8f8;
}
a, a:visited {
color: #1080c0;
text-decoration: underline;
}
.content {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
padding: 0.5em;
background-color: #f8f8f8;
}
</style>
</head>
<body><div class="content">
<div>
ありがとう
</div>
<div>
<a href="#" class="fullscreen-link">Toggle fullscreen</a>
<script>setup(document.body, document.body);</script>
</div>
</div></body>
</html>