blob: 5a157f384c36fcedb89959473950fa35978efc44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>simple testcase</title>
<style type="text/css">
#testid {
background-color: seagreen;
}
body {
color: chartreuse;
}
</style>
</head>
<body>
<div id="testid">simple testcase</div>
</body>
</html>
|