forked from markodenic/web-development-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (101 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
115 lines (101 loc) · 2.97 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<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;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
text-align: center;
font-family: 'Segoe UI', sans-serif;
background-color: #f0f4f8;
}
header {
padding: 20px;
}
h1 {
margin-bottom: 15px;
font-size: 2.5em;
background-image: linear-gradient(45deg, #ff0a78, #43f);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
margin-bottom: 20px;
font-size: 20px;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 20px;
flex: 1;
}
.cta-button {
display: inline-block;
background-color: #333;
color: white;
padding: 10px 20px;
border: none;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s;
font-size: 16px;
}
.cta-button:hover {
background-color: #3bc411;
}
footer {
padding: 20px;
margin-top: auto;
color: #777;
}
a {
color: #333;
text-decoration: none;
}
.footer-links {
margin-top: 10px;
}
</style>
</head>
<body>
<main>
<div>
<h1>
Web Development Resources
</h1>
<p>
This is a list of web development resources with a free tier. <br>
<a class="cta-button" href="/list/">Take me to the list!</a>
</p>
</div>
</main>
<footer>
Made by <a href="https://markodenic.com">Marko</a> and contributors. <br>
<div class="footer-links">
<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>
</div>
</footer>
</body>
</html>