forked from danielbieli/DemoWebseite
-
Notifications
You must be signed in to change notification settings - Fork 0
HTML Templates
Daniel Bieli edited this page Aug 18, 2020
·
4 revisions
<!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%;
}
}
<!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>
<!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>