-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathindex.html
148 lines (130 loc) · 3.62 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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: 'Arial', 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 {
color: #555;
margin-bottom: 20px;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
margin: 10px;
padding: 20px;
width: 250px;
text-align: center;
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-5px);
}
.card h2 {
font-size: 2em;
margin-bottom: 10px;
color: #ff0a78;
}
.card p {
color: #666;
}
.cta-button {
background-color: #333;
color: white;
padding: 10px 20px;
border: none;
border-radius: 20px;
cursor: pointer;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s;
}
.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>
<header>
<h1>
Web Development Resources
</h1>
<p>
This is a list of web development resources with a free tier.
</p>
</header>
<main>
<div class="card">
<h2>200</h2>
<p>Resources Listed</p>
<p>And growing every day</p>
</div>
<div class="card">
<h2>Free Code Tools</h2>
<p>Premium tools at no cost</p>
</div>
<div class="card">
<h2>Tech Blogs</h2>
<p>Latest tech insights</p>
</div>
</main>
<a class="cta-button" href="/list/">Take me to the list!</a>
<footer>
Made by <a href="https://markodenic.com">Marko</a> and contributors. <br>
<div class="footer-links">
<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>