31 lines
901 B
HTML
31 lines
901 B
HTML
<!--
|
|
* @Author: Kane
|
|
* @Date: 2022-10-19 22:46:18
|
|
* @LastEditors: Kane
|
|
* @LastEditTime: 2022-10-19 23:38:21
|
|
* @FilePath: \car_dealer\test.html
|
|
* @Description:
|
|
*
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>测试css</title>
|
|
<!-- <link rel="stylesheet" href="css/root.css" /> -->
|
|
<!-- <link rel="stylesheet" href="css/normalize.css" /> -->
|
|
<link rel="stylesheet" href="css/kane.css" />
|
|
<link rel="stylesheet" href="css/test.css" />
|
|
</head>
|
|
<body>
|
|
<div id="root">
|
|
<div class="father">
|
|
<div class="son"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|