10.怎样定义本网页的关键字? 在网页中加入关键字,可以供某些搜索站台机器人的使用,它们会利用该关键字为你的网站做索引,这样,当别人用关键字搜索网站时,如果你的网页包含该关键字,那么就可以被列出了,定义本网页关键字,可以加入以下代码: meta name="keywords" content="html,dreamweaver,flash,css"> content 所包含的就是关键字,你可以自行设置。 这里有个技巧,你可以重复某一个单词,这样可以提高自己网站的排行位置,如: meta name="keywords" content="dreamweaver,dreamweaver,dreamweaver">
11.怎样链接本网页的对象? 有时链接发生在一个网页里,比如页面上半部分列出了目录,下部分就列出了内容,而单击目录任何一个项目都可以跳到指定部分,可以在要被链接的内容部分设置如下方式: a name="#1">/a> 而要链接到以上设置的部分,可以如下编制: a href="index.htm#t1">t1/a>
meta http-equiv="Content-Type" content="Application/msword">
还有其它经常设置的文件类型:
Application/msword Microsoft Word Document application/pdf PDF Documentapplication/wordperfect6.0 WordPerfect 6.0 Documentapplication/zip ZIP archiveaudio/x-wav WAV audio formataudio/midi MIDI audio formataudio/x-pn-realaudio RealAudioimage/gif GIF image formatimage/jpeg JPEG image formatimage/png PNG image formattext/html HTML documenttext/plain Plain textvideo/mpeg MPEG video formatvideo/quicktime QuickTime video formatvideo/x-msvideo AVI video format
留言板-让访问者给你的站点提提意见; 论坛-讨论某一个特定主题的地方,它和留言板的区别是留言板可以包含任何内容; 调查表单-利用个人站点,你可以对某一问题进行调查,然后看看各意见的支持率; 订阅表单-通过邮件给订阅者提供站点的更新信息; 聊天室-一个即时的对话场所,特别可以对一个特定主题组办一个网络讨论; 搜索引擎-当站点内容过多时,搜索引擎可以让访问者快速找到想看的内容; 88.如何缩进文本段落? 在head>/head>部分加入: p { text-indent: 1% } p 标签为HTML文本段落的标签,1%为缩进的范围
89.如何点击一个链接同时在两个frame 内变化? 对于一个由topFrame、leftFrame、mainFrame 构成的页面,如果想在leftFrame 中点击链接,同时在其他两个frame 内变化,代码如下: a href="x1.htm" onclick="parent.topFrame.location.href=''x2.htm''" target="mainframe"> 90.前进、后退和刷新 a href="javascript:history.back()">后退/a> a href="javascript:history.go()">前进/a> a href="javascript:location.reload()">刷新/a>
97. 如何让浏览器正确显示word 文件格式? 为了正确处理word 等格式,你需要在HTML文件中设置好该文件类型,比如: meta http-equiv="Content-Type" content="application/msword"> 还有其它经常设置的文件类型: application/msword Microsoft Word Document application/pdf PDF Document application/wordperfect6.0 WordPerfect 6.0 Document application/zip ZIP archive audio/x-wav WAV audio format audio/midi MIDI audio format audio/x-pn-realaudio RealAudio image/gif GIF image format image/jpeg JPEG image format image/png PNG image format text/html HTML document text/plain Plain text video/mpeg MPEG video format video/quicktime QuickTime video format video/x-msvideo AVI video format