-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathindex.html
84 lines (73 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<title>Free Web Development Resources</title>
<meta name="description" content="This is a list of awesome web development resources. Add more!">
<link rel="canonical" href="https://web-dev-resources.com/"/>
<style>
* {
padding: 0;
margin: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
text-align: center;
font-family: sans-serif;
font-size: 1.2em;
line-height: 1.2em;
color: #333;
}
header {
padding: 20px;
}
main {
padding: 20px;
line-height: 1.5em;
}
footer {
padding: 20px;
}
h1 {
margin-bottom: 15px;
line-height: 1.4em;
background-image: linear-gradient(45deg, #ff0a78, #43f);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
a {
color: #333;
}
</style>
</head>
<body>
<header>
<h1>
Web Development Resources
</h1>
<p>
This is a list of web developments resources with a free tier.
</p>
</header>
<main>
<p>
Currently more than 200 resources listed.
</p>
<a href="/list/">
Take me to the list!
</a>
</main>
<footer>
Made by <a href="https://markodenic.com">Marko</a> and contributors. <br>
<a href="https://javascriptquiz.com">JavaScript Quiz</a> | <a href="https://freecodetools.org">Free Code Tools</a> |
<a href="https://tech-blogs.dev">Tech Blogs</a>
</footer>
</body>
</html>