HTML Templates - PageSpeedPlus/Web-Development GitHub Wiki

Minimal Valid HTML5 Markup

<!doctype html>
<html lang="de-CH">
    <head>
        <meta charset="utf-8">
        <title>Minimal Valid HTML5 & CSS3</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
    </body>
</html>
body,
html {
  margin: 0;
  padding: 0;
  font-size: 18px;
}

article {
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  body,
  html {
    font-size: 48%;
  }
}

@media screen and (min-width: 600px) {
  body,
  html {
    font-size: 53%;
  }
}

@media screen and (min-width: 800px) {
  body,
  html {
    font-size: 57%;
  }
}

@media screen and (min-width: 1200px) {
  body,
  html {
    font-size: 70%;
  }
}

Article Font Size

Meta Refresh - HTML Weiterleitung

<!doctype html>
<html lang="de">
    <head>
        <meta charset="utf-8">
	<meta name="robots" content="noindex, follow">
        <title>Meta Refresh</title>
	<meta http-equiv="refresh" content="0; URL=https://github.com/danielbieli/HTML5/wiki/HTML-Templates#meta-refresh---html-weiterleitung">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">	
    </head>
    <body>
    </body>
</html>

HTML Iframe Fullscreen

<!doctype html>
<html lang="de-CH">
    <head>
        <meta charset="utf-8">
        <title>HTML Iframe Fullscreen</title>
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
	<meta name="description" content="So ist es möglich praktisch jede Webseite unter der eigenen Domain anzubieten." />
    </head>
	<frameset rows="100%">
	  <frame src="http://www.reset.ch/" title="" frameborder="0" noresize="noresize"/>
	  <noframes>
		<body>
		</body>
	  </noframes>
	</frameset>
</html>
⚠️ **GitHub.com Fallback** ⚠️