HTML 第1-2章 基本标记

    xiaoxiao2023-03-24  5

    HTML 第1-2章 基本标记 demo 01 常识 www(World Wide Web) 万维网 3个组成部分 URL(Uniform Resource Locator) 统一资源定位器 HTTP (Hypertext Transfer Protocal) 超文本传输协议 HTML (Hypertext Markup Language) 超文本标记语言 demo 02 元标记 <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <!--页面描述 --> <meta name="keywords" content="html,元信息,关键字" /> <meta name="description" content="关于HTML使用的网站" /> <meta name="generator" content="Adobe Dreamweaver CS5.5" /> <meta name="author" content="李小米" /> <!--限制搜素方式--> <meta name="robots" content="index" /> content 的值   描述 all           表示能搜素当前的网页及其链接的网页 index  表示能搜索当前网页 nofollow  表示不能搜索当前的网页链接的网页 noindex      表示不能搜索当前网页 none  表示不能搜素当前网页及其链接的网页 <!--语言-->

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <!--设定网页的定时跳转,单位为秒--> <meta http-equiv="refresh" content="3;url=http://www.mingribook.com" /> <!--设定有效期限:必须是GMT格式--> <meta http-equiv="expires" content="Sun,24 January 2016 22:25:00 GMT" /> <!--禁止从缓存中调用--> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="pragma" content="no-cache" /> //cache 高速   pragma 编译指示 <!--删除过期的cookie--> <meta http-equiv="set-cookie" content="Sun,24 January 2016 22:25:00 GMT" /> <!--强制打开新窗口--> <meta http-equiv="windows-target" content="_top" /> <!--页面的进入效果--> <meta http-equiv="page-enter" content="revealtrans(duration=3,transition=21)" /> <!--页面的推出效果--> <meta http-equiv="page-exit" content="revealtrans(duration=5,transition=8)" />
    转载请注明原文地址: https://ju.6miu.com/read-1202071.html
    最新回复(0)