mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
15 lines
445 B
HTML
15 lines
445 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="a.css">
|
|
<link rel="stylesheet" href="b.css" type="text/css">
|
|
<link rel="stylesheet" href="b.css" type="TEXT/CSS">
|
|
<link rel="stylesheet" href="c.css" type=" text/css ">
|
|
<link rel="stylesheet" href="d.css" type="">
|
|
<link rel="stylesheet" href="d.css" type="unknown/unknown">
|
|
</head>
|
|
<body>
|
|
<div>test</div>
|
|
</body>
|
|
</html> |