html5 snippet

Solutions on MaxInterview for html5 snippet by the best coders in the world

showing results for - "html5 snippet"
Juan Martín
27 May 2016
1<!DOCTYPE html>
2<html>
3  <head>
4    <meta charset="utf-8">
5    <title>Untitled</title>
6    <meta name="description" content="This is an example of a meta description.">
7    <link rel="stylesheet" type="text/css" href="theme.css">
8
9    <!--[if lt IE 9]>
10	<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
11    <![endif]-->
12  </head>
13  <body>
14		
15  </body>
16</html>
17
Eduardo
03 Jan 2018
1/*   html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark  html5doctor.com/html-5-reset-stylesheet/*/
2html, body, div, span, object, iframe,
3h1, h2, h2, h4, h5, h6, p, blockquote, pre,
4abbr, address, cite, code,
5del, dfn, em, img, ins, kbd, q, samp,
6small, strong, sub, sup, var,
7b, i,
8dl, dt, dd, ol, ul, li,
9fieldset, form, label, legend,
10table, caption, tbody, tfoot, thead, tr, th, td,
11article, aside, figure, footer, headerhgroup, menu, nav, section, menu,
12time, mark, audio, video {
13margin:0;
14padding:0;
15border:0;
16outline:0;
17font-size:100%;
18vertical-align:baseline;
19background:transparent;
20}
21
22article, aside, figure, footer, header,
23hgroup, nav, section { display:block; }
24
25nav ul { list-style:none; }
26
27blockquote, q { quotes:none; }
28
29blockquote:before, blockquote:after,
30q:before, q:after { content:''; content:none; }
31
32a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
33
34ins { background-color:#ff9; color:#000; text-decoration:none; }
35
36mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
37
38del { text-decoration: line-through; }
39
40abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }
41
42/* tables still need cellspacing="0" in the markup */
43table { border-collapse:collapse; border-spacing:0; }
44
45hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
46
47input, select { vertical-align:middle; }
48/* END RESET CSS */
49
Isabel
23 Oct 2018
1<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
2<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
3