html-mode

http://oku.edu.mie-u.ac.jp/~okumura/html/emacs.html
↑を参考にした。

1.html-helper-mode.el と tempo.el をダウンロード配置
こちらからhtml-helper-mode.el と tempo.el をダウンロードして使うことにします。これらは elisp 用のパスの通ったところ(たとえば /usr/local/share/emacs/site-lisp/)に入れておきます。
windowsでもパスの通ったところにおきましょう。(c:\Meadow:\lisp とか)

2. .emacs に加筆

;;html-mode
(autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t)
(setq auto-mode-alist (cons '("\\.html$" . html-helper-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.tpl$" . html-helper-mode) auto-mode-alist))

※ .html と .tpl をhtmlモードにする。

3.emacs再起動