-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 1.8 KB
/
index.html
File metadata and controls
57 lines (48 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<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/" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.8.1/github-markdown.min.css"
integrity="sha512-BrOPA520KmDMqieeM7XFe6a3u3Sb3F1JBaQnrIAmWg3EYrciJ+Qqe6ZcKCdfPv26rGcgTrJnZ/IdQEct8h3Zhw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.container {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 15px;
}
.markdown-body h1 {
border-bottom: 0;
}
</style>
</head>
<body class="markdown-body">
<main>
<div class="container">
<h1>Web Development Resources</h1>
<p>This is a list of web development resources with a free tier.</p>
<p>
<a href="/list/">Take me to the list!</a>
</p>
</div>
</main>
<footer>
<div class="container">
<p>Made by <a href="https://markodenic.com">Marko</a> and contributors.</p>
<p>
<a href="https://markodenic.tech/html-ebook/">HTML eBook</a> |
<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>
</p>
</div>
</footer>
</body>
</html>