When I select File > New > and then choose anyone of the several templates, I'll create a new tab usually called "Untitled .htm" or "Untitled.css". It will display a pretty basic starting point.
I want to edit the templates used to provide these basic starting points to include timestamps and authorships, and anything else I may want to include.
For example, the basic HTML page is:
Code: Select all
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
</body>
</html>
Code: Select all
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="utf-8">
<meta name="generator" content="My Name">
<meta name="generator" content="the web-site URL">
<meta name="created" content="%timestamp%">
<meta name="description" content="">
<meta name="keywords" content="">
<title></title>
</head>
<body>
</body>
</html>