-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.html
66 lines (63 loc) · 2.56 KB
/
tools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="only light">
<meta name="Description" content="Tools to make writing better, faster, stronger HTML a whole lot easier">
<title>HTML Haus | Tools</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/sane.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!-- <base href="https://html.haus/"> -->
</head>
<body>
<header>
<nav>
<a id="menu-title" href="index.html">HTML<img class="logo" src="img/house-with-tree.png"
alt="House with tree icon"></a>
<ul>
<li><a href="learn.html">Learn</a></li>
<li><a href="practice.html">Practice</a></li>
<li><a href="reference.html">Reference</a></li>
<li><a href="tools.html">Tools</a></li>
</ul>
</nav>
</header>
<main>
<h1>Tools</h1>
<h2>Basic</h2>
<p>
These tools help you validate your HTML and write it better, faster, and stronger.
</p>
<ul>
<li><a href="https://validator.w3.org/">HTML Markup Validator (W3C)</a></li>
<li><a href="https://validator.w3.org/nu/">Nu Html Checker (W3C)</a></li>
<li><a href="https://whatthetag.com/#/">Which Tag, When? Logic Tree</a></li>
<li><a href="https://www.toptal.com/developers/htmlshell">HTMLShell, online editor</a></li>
<li><a href="https://detergent.io/light">Prepare Text for Pasting into HTML</a></li>
</ul>
<h2>Advanced</h2>
<p>
For building applications using an HTML first approach, these tools will simplify your life:
</p>
<ul>
<li><a href="https://htmx.org/">htmx, high power tools for HTML</a></li>
<li><a href="https://hyperscript.org/">hyperscript, language for interactive HTML</a></li>
<li><a href="https://hyperview.org/">Hyperview, hypermedia format for server-driven mobile apps</a></li>
</ul>
<h2>Additional</h2>
<p>
For a background on HTML and Hypermedia, we highly recommend the <a href="https://hypermedia.systems/">Hypermedia Systems</a> book by Carson Gross, Adam Stepinski, and Deniz Akşimşek.
</p>
</main>
<footer>
<a href="learn.html">Learn</a>
<a href="practice.html">Practice</a>
<a href="reference.html">Reference</a>
<a href="tools.html">Tools</a>
<a href="about.html">About</a>
<a href="index.html"><img alt="House with tree icon" class="logo" src="img/house-with-tree.png"></a>
</footer>
</body>
</html>