-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
152 lines (149 loc) · 4.99 KB
/
resources.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
149
150
151
152
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resources</title>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap"
rel="stylesheet"
/>
<style>
body {
margin: 0;
padding: 0;
font-family: "Raleway", sans-serif;
background: linear-gradient(135deg, #e9effb, #f7faff);
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
font-weight: 300;
color: #555;
max-width: 700px;
text-align: center;
margin-bottom: 40px;
}
.resources-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
padding: 0 20px;
}
.resource-item {
background: #fff;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
padding: 20px;
width: 250px;
text-align: center;
transition: transform 0.3s ease;
}
.resource-item:hover {
transform: translateY(-10px);
}
.resource-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 15px;
color: #333;
}
.resource-description {
font-size: 1rem;
color: #666;
margin-bottom: 20px;
}
.resource-link {
background-color: #6c63ff;
color: #fff;
padding: 10px 20px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s ease;
}
.resource-link:hover {
background-color: #594aff;
}
footer {
position: absolute;
bottom: 20px;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<script src="firebase.js"></script>
<h1>Explore Resources</h1>
<p>
Find helpful tools, guides, and platforms to assist you in your tech
journey. These curated resources are designed to help you reach your
goals.
</p>
<div class="resources-container">
<div class="resource-item">
<div class="resource-title">GitHub</div>
<div class="resource-description">
Explore and collaborate on open-source projects.
</div>
<a
href="https://github.com"
class="resource-link"
target="_blank"
>Visit GitHub</a
>
</div>
<div class="resource-item">
<div class="resource-title">Codecademy</div>
<div class="resource-description">
Learn to code interactively with guided lessons.
</div>
<a
href="https://www.codecademy.com"
class="resource-link"
target="_blank"
>Visit Codecademy</a
>
</div>
<div class="resource-item">
<div class="resource-title">FreeCodeCamp</div>
<div class="resource-description">
Get hands-on coding practice with a community of learners.
</div>
<a
href="https://www.freecodecamp.org"
class="resource-link"
target="_blank"
>Visit FreeCodeCamp</a
>
</div>
<div class="resource-item">
<div class="resource-title">W3Schools</div>
<div class="resource-description">
Learn web development with detailed tutorials and
references.
</div>
<a
href="https://www.w3schools.com"
class="resource-link"
target="_blank"
>Visit W3Schools</a
>
</div>
</div>
<footer>Designed to inspire your tech journey © 2024</footer>
</body>
</html>