-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtools.html
More file actions
85 lines (71 loc) · 3.18 KB
/
tools.html
File metadata and controls
85 lines (71 loc) · 3.18 KB
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
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tools | REC+ Designer Hub by ReallyEasyCart</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,700">
<link rel="stylesheet" href="/css/app.css">
</head>
<body>
<header class="page-header">
<h1>Tools</h1>
<h2><a href="/">Return to REC+ Designer Hub</a></h2>
</header>
<main class="page-main">
<div class="grid unit--learn">
<section class="unit">
<a href="https://code.visualstudio.com/" class="unit-inner">
<h1>VSCode</h1>
<p>VSCode is an excellent & free code editor from Microsoft.</p>
</a>
</section>
<section class="unit">
<a href="https://atom.io/" class="unit-inner">
<h1>Atom Text Editor</h1>
<p>Atom is another great free text editor perfect for coding sites.</p>
</a>
</section>
<section class="unit">
<a href="https://caniuse.com/" class="unit-inner">
<h1>Can I use ____?</h1>
<p>Browser Support information on modern techniques, such as Flexbox support.</p>
</a>
</section>
<section class="unit">
<a href="https://debugger.stapps.io/" class="unit-inner">
<h1>DNS, SPF and other debug tools</h1>
<p>A collection of tools for checking DNS & email related issues.</p>
</a>
</section>
<section class="unit">
<a href="http://html5please.com/" class="unit-inner">
<h1>HTML5 Please</h1>
<p>Usage information for new HTML5 tools, with links to Polyfills where needed.</p>
</a>
</section>
<section class="unit">
<a href="https://autoprefixer.github.io/" class="unit-inner">
<h1>AutoPrefixer</h1>
<p>Copy and paste your css here to make sure you've got all cross browser prefixes sorted, also available as plugins for most text editors.</p>
</a>
</section>
<section class="unit">
<a href="http://csstriggers.com/" class="unit-inner">
<h1>CSS Triggers</h1>
<p>Find out fine grained details of CSS properties that cause layout, paint, and composite in the browser, useful in combination with Chrome Dev Tools to fix <em>Jank</em> on your pages</p>
</a>
</section>
</div>
</main>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ENDQCYX1FH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ENDQCYX1FH');
</script>
</body>
</html>