-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
79 lines (76 loc) · 3.14 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Dart Cheat Sheet</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="./favicon.ico" rel="icon" type="image/x-icon" />
<link href="./favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="css/main.css" rel="stylesheet">
<link href="css/html.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700|Anton' rel='stylesheet' type='text/css'>
<meta name="description" content="The cheat sheet references main classes and methods from Dart SDK.">
<meta name="author" content="Guillaume Girou, Nicolas François, Vincent Bostoen">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style TYPE="text/css">
.table {
display: table;
width: 100%;
}
</style>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42028125-2', 'dartlangfr.net');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="header">
<h1>
<img alt="Dart Logo" src="img/dart-logo.png"/>
Dart Cheat Sheet
<span class="noprint" style="display: inline">
<span class="g-plusone" data-href="http://dartlangfr.net/dart-cheat-sheet/"></span>
</span>
</h1>
</div>
<div id="content">
<div id="welcome">
<div>
<div>
<a href="core.html" class="btn btn-default">
<img src="img/core.png" style="width: 100%" alt="dart:core">
</a>
</div>
<div>
<a href="html.html" class="btn btn-default">
<img src="img/html.png" style="width: 100%" alt="dart:html">
</a>
</div>
<div>
<a href="angular.html" class="btn btn-default">
<img src="img/angular.png" style="width: 100%" alt="dart:html">
</a>
</div>
</div>
</div>
</div>
<div id="footer">
<a href="https://plus.google.com/115816334172157652403">
<img src="img/dartlangfr.png" alt="Dartlang [FR] - ʕ๏̮๏ʔ">
</a>
<div>
+Made by <a href="http://plus.google.com/115049522200141162219"><span>Guillaume Girou</span></a>, <a href="http://plus.google.com/106226789128312528511"><span>Nicolas François</span></a> and <a href="http://plus.google.com/109253530406296308866"><span>Vincent Bostoen</span></a> from
<a href="https://plus.google.com/115816334172157652403"><span>Dartlang [FR] - ʕ๏̮๏ʔ</span></a><br>
</div>
</div>
<!-- Google+ +1 button. -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{parsetags: 'explicit'}
</script>
<script type="text/javascript">gapi.plusone.go("header");</script>
</body>
</html>