zoukankan      html  css  js  c++  java
  • CSS简介

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>CSS简介</title>


    </head>
    <hr>
    <head>
        <title>使用外部CSS</title>
        <link href="css/styles.css" type="text/css" rel="stylesheet"/>
    </head>
    <body>
    <h1>potatoes</h1>
    <p>There are dozens of different potatou varieties.They are usually described as early,second early and maincrop potatoes.</p>
    </body>


    <hr>
    <head>
        <title>使用内部CSS</title>
        <style type="text/css">
            body{
                font-family:arial;
            }
            h1{
                color:rgb(255,255,255)
            }
            </style>
    </head>
    <body>
    <h1>potatoes</h1>
    <p>There are dozens of different potato varieties. They are usually described as early, second early and maincrop potatoes.</p>
    </body>


    <hr>
    <head>
        <title>CSS选择器</title>
    </head>
    <body>
    <h1><a id="top"><font color="black">Kitchen Garden Calrndar</font></a></h1>
    <p id="introduction">Here you can read our handy guide about what to do when.</p>
    <h2><font color="black">Spring</font></h2>
    <ul>
        <li><a href="mulch.html">Spring mulch vegetable beds</a></li>
        <li><a href="potato.html">Plant out early potatoes</a></li>
        <li><a href="tomato.html">Sow tomato seeds</a></li>
        <li><a href="beet.html">Sow beet seeds</a></li>
        <li><a href="zucchini.html">Sow zucchini seeds</a></li>
        <li><a href="rhubarb.html">Deadhead rhubarb flowers</a></li>
    </ul>
    <p class="note">This page was written by<a href="mailto:jon@examole.org">jon@example.org</a>
        for<a href="http://www.wiley.com">wiley</a>.</p>
    <p><a href="#top">Top of page</a></p>
    </body>
    <hr>
    <head>
        <title>CSS规则如何联级</title>
        <style typy="txt/css">
            *{
                font-family:Arial,Verdana,sans-serif;}
            h1{
                font-family: "Courier New",Courier,minispace;}
            i{
                color:green;}
            i{
                color:red;}
            b{
                color: pink;}
            pb{
                color:blue !important;}
            pb{
                color: violet;}
            p#intro{
                font-size:100%;}
            p{
                font-size: 75%;}
        </style>
    </head>
    <body>
    <h1>potatoes</h1>
    <p id="intro">There are<i>dozens</i> of different<b>potato</b>varieties.</p>
    <p>They are usually described as early, second early and maincrop potatoes.</p>
    </body>


    <hr>
    <head>
        <head>
            <title>继承</title>
            <style type="text/css">
                body {
                    font-family: Arial, Verdana, sans-serif;
                    color: #665544;
                    padding: 10px;}
                .page {
                    border: 1px solid #665544;
                    background-color: #efefef;
                    padding: inherit;}
            </style>
        </head>
    <body>
    <div class="page">
        <h1><font color="black">Potatoes</font></h1>
        <p>There are dozens of different potato varieties.</p>
        <p>They are usually described as early, second early and maincrop potatoes.</p>
    </div>
    </body>


    </html> 

  • 相关阅读:
    CF446C [DZY loves Fibonacci]
    [BZOJ2286] 消耗战
    [CF Round #278] Tourists
    BZOJ2553 [BJWC2011]禁忌
    NOI2018D2T1 屠龙勇士
    BZOJ2333 棘手的操作
    bzoj4196: [Noi2015]软件包管理器(树链剖分)
    bzoj1833: [ZJOI2010]count 数字计数(数位DP)
    bzoj1026: [SCOI2009]windy数(数位DP)
    bzoj3631: [JLOI2014]松鼠的新家(树上差分)
  • 原文地址:https://www.cnblogs.com/max-hou/p/8530733.html
Copyright © 2011-2022 走看看