制作静态网页一般都是html或者是htm文件,而html与htm文件可以用dreamweaver软件新建然后保存为html与htm文件。如果没有安装此类软件又想快捷地建立一个标准的HTML文档,那么通过简单的步骤在右键的新建菜单中添加.HTML文件即可达到目的!
1、新建一个记事本,粘贴以下代码,保存后修改后缀名为.reg,双击reg文件导入到注册表。
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.php]
@="phpfile" "Content Type"="text/plain"
[HKEY_CLASSES_ROOT\.php\ShellNew] "Data"=hex:3c,3f,70,68,70,0d,0a,0d,0a,3f,3e
[HKEY_CLASSES_ROOT\phpfile]
@="PHP Script File"
[HKEY_CLASSES_ROOT\phpfile\DefaultIcon] @="%SystemRoot%\\System32\\WScript.exe,3"
[HKEY_CLASSES_ROOT\phpfile\shell]
[HKEY_CLASSES_ROOT\phpfile\shell\open]
[HKEY_CLASSES_ROOT\phpfile\shell\open\command]
@="notepad %1"
[HKEY_CLASSES_ROOT\.html\ShellNew]
"FileName"="htmlfile.html"
第二步,在系统盘下的Windows\ShellNew目录下创建一个文件名为 htmlfile.html
内容可以写html的DTD骨架
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html lang=”en”><head><meta http-equiv=”content-type” content=”text/html; charset=utf-8″> <title>Docum</title></head><body></body></html>
完成以上两个步骤就可以在右键新建菜单中看到新建.html文件啦!
本站资源仅供个人学习交流。发布者:USBMI,欢迎转载:/739.html