mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
34 lines
717 B
HTML
34 lines
717 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Document</title>
|
|
<style>
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
<style type="text/css">
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
<style type="TEXT/CSS">
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
<style type=" ">
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
<style type=" text/css ">
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
<style type="unknown/unknown">
|
|
h1 {color:red;}
|
|
p {color:blue;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p style=" color: red; background-color: rgb(100, 75, 200); "></p>
|
|
<p style=" "></p>
|
|
</body>
|
|
</html> |