5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTMLのテンプレート(作業用)

Last updated at Posted at 2016-03-21

週1度くらいの頻度で、JavaScriptやCSSを一部分だけ切り取り、
簡単なHTML画面を作って動かそうとする機会があります。
(ほぼ、うまく動かなくて原因潰している時ですが。。)

毎回定型文を、とほほや、リファレンスに駆け込んで
コピペしていました。以下に記載しておきたいと存じます。

HTMLテンプレート

<!DOCTYPE html>
<html lang=“ja”>
 <head>
  <meta http-equiv="content-language" content="ja">
  <meta name="robots" content="noindex,nofollow">
  <meta charset="UTF-8">
  <title>HTML5サンプル</title>
  <style type="text/css">
   font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, sans-serif;
  </style>
 </head>
 <body>
 </body>
</html>
5
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?