How to change the template for new HTML documents?

When I create a new HTML document in WebStorm I get a file with this content:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title></title>
</head>
<body>


</body>
</html>


I would like to change this template ( set doctype to <!doctype html> and add <meta charset="UTF-8"> ). How do I do that?

2 comments
Comment actions Permalink

See Settings | File Templates | HTML.

0
Comment actions Permalink

So easy :) Thanks.

0

Please sign in to leave a comment.