HTML笔记 5.段落章节

hgroup 元素 - 隐藏子标题

<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <style type="text/css">
        h1, h2, h3 {background: grey; color: white;}

        hgroup > h1 {margin-bottom: 0px;}

        hgroup > h2 {background: grey; color: white; font-size: 1em; margin-top: 0px}
    </style>
</head>
<body>
    <!--hgroup元素可以用来将几个标题元素作为一个整体处理-->
    <hgroup>
        <h1>我是标题一</h1>
        <h2>我是标题二</h2>
    </hgroup>
    我喜欢苹果和橘子。
    <h2>外部的标题二</h2>
    我也喜欢苹果和橘子。
    <h3>更多信息</h3>
    待到山花烂漫时,它在丛中笑。

</body>
</html>

作者的意图:通过缩小hgroup元素中两个标题元素的间距将二者拉拢在一起,并且为二者设置同样的背景色,可以在外观上明确揭示二者的关系。


section 元素 - 表示文档中的一节

<section>元素通常包含一个或多个段落及一个标题,不过标题并不是必须的。

使用 section 元素后,浏览器就会负责理顺标题元素的层次关系,让作者从确定和管理各个标题元素的正确次序的差事中解脱出来。

<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <style type="text/css">
        h1, h2, h3 {background: grey; color: white;}

        hgroup > h1 {margin-bottom: 0px;}

        hgroup > h2 {background: grey; color: white; font-size: 1em; margin-top: 0px}
    </style>
</head>
<body>


    <!--section 元素表示文档中的一节,section元素用来包含的是那种应该列入文档大纲或目录中的内容-->
    <section>
        <hgroup>
            <h1>我是标题一</h1>
            <h2>我是标题二</h2>
        </hgroup>
        我喜欢苹果和橘子。
        <h2>外部的标题二</h2>
        我也喜欢苹果和橘子。
        <h3>更多信息</h3>
        待到山花烂漫时,它在丛中笑。
        <section>
                    <hgroup>
            <h1>我是标题一</h1>
            <h2>我是标题二</h2>
        </hgroup>
        我喜欢苹果和橘子。
        <h2>外部的标题二</h2>
        我也喜欢苹果和橘子。
        <h3>更多信息</h3>
        待到山花烂漫时,它在丛中笑。
        <section>
                    <hgroup>
            <h1>我是标题一</h1>
            <h2>我是标题二</h2>
        </hgroup>
        我喜欢苹果和橘子。
        <h2>外部的标题二</h2>
        我也喜欢苹果和橘子。
        <h3>更多信息</h3>
        待到山花烂漫时,它在丛中笑。
        </section>
        </section>
    </section>
</body>
</html>

hearder 和 footer - 添加首部和尾部

  • <header>元素表示一节的首部,通常包含刊头或徽标,一个标题元素或一个<hgroup>元素,还可以包含该节的导航<nav>元素。
  • <footer>元素表示一节的尾部,通常包含该节的总结信息、作者介绍、版权信息、相关链接、免责声明等内容。
<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <style type="text/css">
        h1, h2, h3 {background: grey; color: white;}

        hgroup > h1 {margin-bottom: 0px;}

        hgroup > h2 {background: grey; color: white; font-size: 1em; margin-top: 0px}

        body > header *, footer > * {background: transparent; color: black;}
        body > section, body > section > section,
        body > section > section > section {margin-left: 10px;}

        body > header, body > footer {
            border: medium solid black; padding-left: 5px; margin: 10px 0 10px 0;
        }
    </style>
</head>
<body>

    <!--header 元素表示一节的首部,包括刊头、徽标等-->

    <!--整个文档的首部-->
    <header>
        <hgroup>
            <h1>我是标题一</h1>
            <h2>我是标题二</h2>
        </hgroup>
    </header>

    <!--section 元素表示文档中的一节,section元素用来包含的是那种应该列入文档大纲或目录中的内容-->
    <section>
        <!--某一节的首部-->
        <header>
            <hgroup>
                <h1>我是标题一</h1>
                <h2>我是标题二</h2>
            </hgroup>
        </header>
        我喜欢苹果和橘子。
        <h2>外部的标题二</h2>
        我也喜欢苹果和橘子。
        <h3>更多信息</h3>
        待到山花烂漫时,它在丛中笑。
    </section>

    <!--footer表示一节的尾部,通常包含该节的总结信息,作者介绍、版权信息、相关链接、徽标、免责声明等-->
    <footer id="mainFooter">
        &#169;2011, Adam Freeman. <a href="http://apress.com">Visit Apress</a>
    </footer>
</body>
</html>

nav - 添加导航区域

<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <style type="text/css">
        h1, h2, h3 {background: grey; color: white;}

        hgroup > h1 {margin-bottom: 0px;}

        hgroup > h2 {background: grey; color: white; font-size: 1em; margin-top: 0px}

        body > header *, footer > * {background: transparent; color: black;}
        body > section, body > section > section,
        body > section > section > section {margin-left: 10px;}

        body > header, body > footer {
            border: medium solid black; padding-left: 5px; margin: 10px 0 10px 0;
        }

        body > nav {text-align: center; padding: 2px; border: dashed thin black;}
        body > nav > a {padding: 2px; color: black}
    </style>
</head>
<body>
    <header>
        <hgroup>
            <h1>我是标题一</h1>
            <h2>我是标题二</h2>
        </hgroup>

        <!--nav表示文档中的一个区域,它包含着到其他页面或同一页面的其他部分的链接-->
        <!--nav元素的目的是规划出文档的主要导航区域-->
        <nav>
            <h1>Contents</h1>
            <ul>
                <li><a href="#fruitsilike">Fruits I Like</a></li>
            </ul>
            <li><a href="#activitiesilike">Activities I Like</a></li>
            <ul>
                <li><a href="#tritypes">Kinds of Triathlon</a></li>
                <li><a href="#mytri">The kind of triathlon I am aiming</a></li>
            </ul>
        </nav>
    </header>

    <section>
        <!--某一节的首部-->
        <header>
            <hgroup>
                <h1 id="fruitsilike">Fruits I Like</h1>
                <h2>How I learned to love Citrus</h2>
            </hgroup>
        </header>
        我喜欢苹果和橘子。
        <h2>外部的标题二</h2>
        我也喜欢苹果和橘子。
        <h3>更多信息</h3>
        待到山花烂漫时,它在丛中笑。
    </section>

    <footer id="mainFooter">
        &#169;2011, Adam Freeman. <a href="http://apress.com">Visit Apress</a>
    </footer>
</body>
</html>

article - 文章内容

article 元素代表HTML文档中一段独立成篇的内容。从理论上讲,可以独立于页面其余内容发布或使用。

aside - 生成附注栏

类似书籍或杂志中的侧栏,包含背景内容、相关链接等。

<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <meta charset="utf-8">
    <meta name="author" content="Andy">
    <meta name="description" content="A simple example of aside">
    <link rel="shortcut icon" type="image/x-icon" href="favico.ico">

    <!--文档内嵌CSS样式-->
    <style type="text/css">
        h1, h2, h3, article > footer {background: grey; color: white;}
        hgroup > h1 {margin-bottom: 0; margin-top: 0;}
        hgroup > h2 {background: grey; color: white; font-size: 1em; margin-top: 0px; margin-bottom: 2px;}

        body > header *, body > footer * {background: transparent; color: black;}

        article {border: thin black solid; padding: 10px; margin-bottom: 5px;}
        article > footer {padding: 5px; margin: 5px; text-align: center;}
        article > footer > nav > a {color: white}

        body > article > section, 
        body > article > section > section {margin-left: 10px;}
        body > header,
        body > footer {
            border: medium solid black; padding-left: 5px; margin: 10px 0 10px 0;
        }
        body > nav {text-align: center; padding: 2px; border: dashed thin black;}
        body > nav > a {padding: 2px; color: black;}

        aside { width: 40%; background: white; float: right; border: thick solid black; margin-left: 5px;
        }
        aside > section {padding: 5px;}
        aside > h1 {background: white; color: black; text-align: center;}
    </style>
</head>
<body>

    <!--文档首部-->
    <header>
        <hgroup>
            <h1>Things I like</h1>
            <h2>by Adam Freeman</h2>
        </hgroup>

        <!--文档导航区域-->
        <nav>
            <h1>Contents</h1>
            <ul>
                <li><a href="#fruitsilike">Fruits I Like</a></li>
                <li><a href="#activitiesilike">Activities I Like</a></li>
            </ul>
        </nav>
    </header>

    <!--文档中一段独立成篇的内容-->
    <article>
        <!--文章内的首部-->
        <header>
            <hgroup>
                <h1 id="fruitsilike">Fruits I Like</h1>
                <h2>How I Learned to love Citrus</h2>
            </hgroup>
        </header>
        <!--附注栏-->
        <aside>
            <h1>Why Fruit is Healthy</h1>
            <section>
                Here are three reasons why everyone should eat more fruit:
                <ol>
                    <li>Fruit contains lots of vitamins</li>
                    <li>Fruit is a source of fibre</li>
                    <li>Fruit contains few calories</li>
                </ol>
            </section>
        </aside>
        I like apples Android oran
        <!--文章章节-->
        <section>
            <h1 id="morefruit">Additional fruits</h1>
            I also like bananas, mangoes, cherries, apricots, plums,peaches Android gra
            <section>
                <h1>More information</h1>
                You can see other fruits I like <a href="fruitlist.html">here</a>>
            </section>
        </section>
            <!--文档的尾部信息-->
            <footer>
                <nav>
                    More Information:<a href="http://fruit.org">Learn More About Fruit</a>
                </nav>
            </footer>
    </article>

    <!--文档中一段独立成篇的内容-->
    <article>
        <!--章节首部信息-->
        <header>
            <hgroup>
                <h1 id="activitiesilike">Activities I Like</h1>
                <h2>It hurts, but I keep doing it</h2>
            </hgroup>
        </header>
        <!--章节-->
        <section>
                <p>I like to swim, cycle and run. I am in training for my first taiathlon, but it is hard work.</p>
                <h1 id="triptypes">Kinds of Triathlon</h1>
                There are different kinds of triathlon - spring, Olympic and so on.
                <section>
                    <h1 id="mytri">The kind of taiathlon I am aiming for</h1>
                    I am aiming for Olympic, which consists of the following:
                    <ol>
                        <li>1.5Km swim</li>
                        <li>40km cycle</li>
                        <li>10km run</li>
                    </ol>
                </section>
            </section>

            <!--章节尾部信息-->
            <footer>
                <nav>
                <a href="http://triathlon.org">Learn More About Triathlons</a>
                </nav>
            </footer>
    </article>

    <!--文档尾部信息-->
    <footer id="mainFooter">
    &#169;2011, Adam Freeman. <a href="http://apress.com">Visit Apress</a>
    </footer>

</body>
</html>

adress - 提供联系信息

<!--此例演示如何在 HTML 文件中写地址。-->
<address>
Written by <a href="mailto:webmaser@example.com">Andy</a>.<br />
Visite us at:<br />
Example.com<br />
Box 567, Disneyland<br />
USA
</address>
地址

details - 生成详情区域

<!--详情区域-->
<details>
    <summary>Kinds of Triathlon</summary>
    Therr are different kinds of triathlon - spring, Olympic and so on.
    I am aming of Olympic, which consists of the following:
    <ol>
        <li>1.5Km swim</li>
        <li>40km cycle</li>
        <li>10km run</li>
    </ol>
</details>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • HTML 5 HTML5概述 因特网上的信息是以网页的形式展示给用户的,因此网页是网络信息传递的载体。网页文件是用...
    阿啊阿吖丁阅读 3,828评论 0 0
  • 首先是关于语义(Semantics)和默认样式的区别,默认样式是浏览器设定的一些常用tag的表现形式,语义化的主要...
    DecadeHeart阅读 3,420评论 0 3
  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,727评论 1 92
  • 2017-03-10霏扬妈妈霏扬妈妈 先说我的婆媳关系概况。 之前我写过一篇文章《这一生,就让我们这有相互依靠着走...
    霏扬妈妈阅读 332评论 0 1
  • 你那里下雨 我这里下雪 其实我不知道这段热情会持续多久 而且我还不完全了解你 可我已经对你有了信任 对你的想念也是...
    尤三岁阅读 107评论 0 0