Skip to content

Instantly share code, notes, and snippets.

@satomixx
Created March 25, 2013 09:37
Show Gist options
  • Save satomixx/5235993 to your computer and use it in GitHub Desktop.
Save satomixx/5235993 to your computer and use it in GitHub Desktop.
HTML5 MARKUP INTRODUCTION ref: http://qiita.com/items/802dcd54597639de8c25
if you declare h series without section elements, unknown section would be made automatically.
the undeclared section is not recommended.
finction(add(a,b){
return a+b;
}
function joinAndUpper(array){
var array2 = array.join(' ');
var array3 = array2.toUpperCase();
return array3;
}
function joinAndUpper(array){
return array.join(' ').toUpperCase();
}
<!DOCTYPE html>
<meta charset="UTF-8">
<title> Throat is… </title>
<p> Please stop my cough, <b style="font-size:5em; color:green">throat ache, my gosh!</b></p>
<svg>
<path d = "M 20 20 L 60 20 L 40 60 z"
fill="green"
stroke="red"
stroke-width="3" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment