HTML学习之CSS三种引入方式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
input{
background-color: rgb(27, 237, 174);
color: white;
width: 60;
height: 40;
font-size: 20;
font-family: '隶书';
border: 2px solid green;
border-radius: 5px;
}
</style>
<link rel="stylesheet" href="btn.css">
</head>
<body>
<input type="button" value="按钮"
style="background-color: rgb(27, 237, 174);color: white;width: 60;height: 40;
font-size: 20;font-family: '隶书';border: 2px solid green; border-radius: 5px;"/>
<input type="button" value="按钮1" />
</body>
</html>
input{
background-color: rgb(27, 237, 174);
color: white;
width: 60;
height: 40;
font-size: 20;
font-family: '隶书';
border: 2px solid green;
border-radius: 5px;
}