-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon/favicon-16x16.png"
/>
<title>Fairest Framework</title>
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="mo.css" />
</head>
<body>
<div class="layout">
<main>
<section class="hero">
<h1>Fairest Framework</h1>
<p class="sub">
A guide for choosing the right framework for the job.
</p>
<div class="links">
<a class="button large start" href="">Get Started</a>
<a
class="button large cta"
href="https://github.com/hayitsdavid/fairest-framework"
target="_blank"
>Checkout Repo ></a
>
</div>
<!-- <p class="description">
Every minute a new JavaScript framework is born, or it can feel like
that at least. This project attemps to help educate developers about
a framework's strength and weakness, as well as providing a repo to
tinker with.
</p> -->
<!-- <h4>To Read More</h4> -->
<!-- <div class="links">
<a
class="button large"
href="https://github.com/hayitsdavid/fairest-framework"
target="_blank"
>GitHub</a
>
<a class="button large" href="">Article</a>
</div> -->
</section>
<h2>Examples</h2>
<ul class="examples">
<li>
<img src="assets/javascript.png" alt="javascript logo" />
<a class="button" href="vanilla-js/">Vanilla</a>
</li>
<li>
<img src="assets/vue.png" alt="vue logo" />
<a class="button" href="/dist/vue-app/">Vue</a>
</li>
<li>
<img src="assets/react.png" alt="react logo" />
<a class="button" href="/dist/react-app/">React</a>
</li>
<li>
<img src="assets/angular.png" alt="angular logo" />
<a class="button" href="/dist/angular-app/">Angular</a>
</li>
<li>
<img src="assets/svelte.png" alt="svelte logo" />
<a class="button" href="/dist/svelte-app/">Svelte</a>
</li>
</ul>
</main>
</div>
</body>
</html>