引入css的4种方法

 

行内式

    <h1 style="color:white;background-color:blue;">this is a line of text.</h1>

内嵌式

    <style type="text/css">

        h1{color:white;background-color:blue;}

    </style>

导入式

    <style type="text/css">@import"mystyle.css;"</style>

链接式

    <link href="mystyle.css" rel="stylesheet" type="text/css" />

 

你可能感兴趣的:(css)