Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active October 17, 2017 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/e66f5dc4fae62192a147f1b28df33892 to your computer and use it in GitHub Desktop.
Save radarin/e66f5dc4fae62192a147f1b28df33892 to your computer and use it in GitHub Desktop.
HTML-Grundgerüst komplett
<!doctype html>
<html>
<head>
<!-- Meta Tag zur Angabe der Textformatierung -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Titel der Seite</title>
<!-- Meta Tags für Suchmaschinen -->
<meta name="description" content="Beschreibung des Inhaltes" />
<meta name="keywords" content="Stichworte zum Inhalt" />
<meta name="generator" content="R.A.D. WebPublishing" />
<meta name="robots" content="index, follow" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<!-- CSS laden -->
<link rel="stylesheet" href="css/style.css" media="all" />
</head>
<body>
<!-- Sichtbarer Inhalt der Webseite -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment