mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-01 06:33:22 +00:00
25 lines
411 B
HTML
25 lines
411 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>simple testcase</title>
|
|
<link rel="stylesheet" charset="UTF-8" type="text/css" media="screen" href="simple.css"/>
|
|
<style type="text/css">
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
div {
|
|
font-size: 4em;
|
|
}
|
|
|
|
div > span {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>simple <span>testcase</span></div>
|
|
</body>
|
|
</html>
|