Web前端开发学习笔记 - Day03

Day03学习笔记

1. CSS引入方式

1.1 行内样式


<html lang="en">
    <head>
        <title>This is titletitle>
    head>
    <body>
        <p style="font-size: 16px; color: red;">大家好p>
    body>
html>

行内样式写在标签的 style 属性值中。

1.2 内部样式


<html lang="en">
    <head>
        <title>This is titletitle>
        <style>
            p {
                font-size: 16px;
                color: red;
            }
        style>
    head>
    <body>
        <p>Hello everyonep>
    body>
html>

内部样式需要写在