CSS知识点笔记1-----CSS写在哪里
1.在标签上
<img src=”…” style=”height:100px”/>
<div style=”color:red;”>中国联通</div>
2.在head标签中写style标签
<!DOCTYPE html>
<html lang=”en” xmlns=”http://www.w3.org/1999/html”>
<head>
<meta charset=”UTF-8″>
<title>Title</title>
<style>
.c1{
color:red;
}
</style>
</head>
<body>
<h1 class=’c1’>用户注册</h1>
<form method=”post” action=”/register”>
用户名:<input type=”text” name=”uu”/>
密码:<input type=”password” name=”pp”/>
</form>
</body>
</html>
3.写到文件中
<!DOCTYPE html>
<html lang=”en” xmlns=”http://www.w3.org/1999/html”>
<head>
<meta charset=”UTF-8″>
<title>Title</title>
<link rel = “stylesheet” href=”common.css” />
</head>
<body>
<h1 class=’c1’>用户注册</h1>
<form method=”post” action=”/register”>
用户名:<input type=”text” name=”uu”/>
密码:<input type=”password” name=”pp”/>
</form>
</body>
</html>