zoukankan      html  css  js  c++  java
  • 真正的XHTML 2.0模板

    今天在外国一网址淘到的,不过已经没大用处,就连严格遵守XHTML1规则的网站也不多,今年还听说难产了,人员被调配去搞HTML5!标签还是那些,B标签还能使用,dtd没有看。

    http://www.w3.org/MarkUp/html-spec/html-spec_3.html#SEC3.4
     
    
    <?xml version="1.0"?>
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"
    "http://www.w3.org/MarkUp/html-spec/html.dtd">
    <HTML>
    <!-- Here's a good place to put a comment. -->
    <HEAD>
    <TITLE>Structural Example</TITLE>
    </HEAD><BODY>
    <H1>First Header</H1>
    <P>This is a paragraph in the example HTML file. Keep in mind
    that the title does not appear in the document text, but that
    the header (defined by H1) does.</P>
    <OL>
      <LI>First item in an ordered list.</LI>
      <LI>Second item in an ordered list.</LI>
      <UL COMPACT="COMPACT">
        <LI> Note that lists can be nested;</LI>
        <LI> Whitespace may be used to assist in reading the
        HTML source.</LI>
      </UL>
      <LI>Third item in an ordered list.</LI>
    </OL>
    <P>This is an additional paragraph. Technically, end tags are
    not required for paragraphs, although they are allowed. You can
    include character highlighting in a paragraph. <EM>This sentence
    of the paragraph is emphasized.</EM> <!--Note that the </P>
    end tag has been omitted-->.</P>
    <P>
    <IMG SRC="triangle.xbm" alt="Warning: "/>
    Be sure to read these <B>bold instructions</B>.</P>
    </BODY></HTML>
    

  • 相关阅读:
    计算机网络【七】:可靠传输的实现 (tcp窗口滑动以及拥塞控制)【转】
    计算机网络【六】:传输层-TCP概述 【转】
    计算机网络【五】:路由选择协议 【转】
    计算机网络【三】:数据链路层 【转】
    计算机网络【二】:物理层【转】
    计算机网络【一】:概述 【转】
    装饰模式-Decorator
    Java中的文件上传和下载
    模板方法模式-TemplateMethod
    策略模式-Strategy
  • 原文地址:https://www.cnblogs.com/rubylouvre/p/1535686.html
Copyright © 2011-2022 走看看