-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (38 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./index.css" />
<title>7 GUIS</title>
</head>
<body>
<main>
<h2>Various 7 GUIs</h2>
<p>
When experimenting with a new language or frontend framework, what do
you do to get to grips with it quickly?
</p>
<p>
As I enjoy GUI and frontend programming, among the first things I do is
implement
<a href="https://github.com/eugenkiss">Eugen Kiss</a>'s
<a href="https://eugenkiss.github.io/7guis/">7GUIs Benchmark</a>. Here I
will host the demos to my implementations of the 7GUIs and perhaps other
tasks as well.
</p>
<p>
My implementations will not be perfectly consistent across the
frameworks. That is not the point. But if you happen to be looking over
any of the
<a href="https://github.com/theSherwood/7_GUIs">source code</a> for
these implementations and find something that could be more idiomatic in
that language or framework, don't hesitate to raise an issue!
</p>
<div id="root" />
</main>
<script src="./sinuous.js"></script>
<script src="./index.js"></script>
</body>
</html>