-
Notifications
You must be signed in to change notification settings - Fork 1
/
html5.html
34 lines (34 loc) · 1.94 KB
/
html5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: default
title: Html5 and markup
---
<div class="row">
<div class="col12">
<h1>KlokanTech Base HTML </h1>
<p>This is the sample for the base HTML5 starter.</p>
<pre><i><!DOCTYPE html></i>
<b><</b><b>html</b> lang<i>=</i><b>"en"</b><b>></b>
<b><</b><b>head</b><b>></b>
<b><</b><b>meta</b> charset<i>=</i><b>"utf-8"</b><b>></b>
<b><</b><b>meta</b> name<i>=</i><b>'viewport'</b> content<i>=</i><b>'width=device-width, initial-scale=1.0, maximum-scale=1.0'</b><b>></b>
<b><</b><b>meta</b> name<i>=</i><b>"author"</b> content<i>=</i><b>"KlokanTech"</b><b>></b>
<b><</b><b>meta</b> name<i>=</i><b>"description"</b> content<i>=</i><b>"Klokan Technologies GmbH"</b><b>></b>
<b><</b><b>link</b> href<i>=</i><b>"http://klokantech.github.io/styles/base.css"</b> rel<i>=</i><b>"stylesheet"</b><b>></b>
<b><</b><b>link</b> rel<i>=</i><b>"shortcut icon"</b> href<i>=</i><b>"favicon.ico"</b> type<i>=</i><b>"image/x-icon"</b><b>></b>
<b><</b><b>title</b><b>></b>Klokan Technologies GmbH<b></</b><b>title</b><b>></b>
<b><</b><b>script type="text/javascript" src="/js/index.js"</b><b>></b><b></</b><b>script</b><b>></b>
<b></</b><b>head</b><b>></b>
<b><</b><b>body</b><b>></b>
<b><</b><b>h1</b><b>></b>Klokan Technologies GmbH<b></</b><b>h1</b><b>></b>
<b></</b><b>body</b><b>></b>
<b></</b><b>html</b><b>></b></pre>
<h3>Code style</h3>
<ul>
<li>Attribute values should be wrapped in single quotes.</li>
<li>Two space, soft tab indentation</li>
<li>Paragraphs of text should always be placed in a <code><p></code> tag. Never use multiple <code><br></code> tags.</li>
<li>List items should always be in <code><ul></code>, <code><ol></code>, or <code><dl></code>, Never a set of <code><div></code></li>
<li>Every visible form input should use a <code><label></code> tag.</li>
</ul>
</div>
</div>