shishi6shu/vue/index.html

23 lines
574 B
HTML
Raw Permalink Normal View History

2024-08-23 19:01:27 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>时时6叔</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
body{
width: 100%;
height: 100%;
background-color: rgb(240, 230, 140) ;
/* 渐变背景色 */
background: radial-gradient(circle,rgb(240, 230, 140),rgb(230, 220, 125),
rgb(225, 205, 60),rgb(200, 180, 15));
}
</style>