-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
164 lines (147 loc) Β· 4.13 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>daysOfVanillaJS</title>
<style>
html {
height: 100%;
width: 100%;
}
body {
padding: 0;
margin: 0;
}
p {
font-size: 18px;
}
img {
width: 600px;
height: 400px;
object-fit: contain;
display: block;
padding: 10px;
background-color: darkslateblue;
border: 2px solid rgb(255, 210, 205);
}
a {
color: rgb(255, 210, 205);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.challenges-container {
background: linear-gradient(darkslateblue, rgb(84, 1, 84));
color: cornflowerblue;
padding: 20px 150px;
text-shadow: 1px 1px 10px darkslategrey;
text-align: center;
line-height: 1.5;
}
.challenges {
color: lightcyan;
display: flex;
align-items: center;
column-gap: 100px;
padding: 50px;
}
@media (max-width: 1200px) {
.challenges-container {
padding: 20px 0;
}
.challenges {
display: block;
}
img {
margin: 0 auto;
}
}
@media (max-width: 700px) {
img {
width: 100%;
}
}
</style>
</head>
<body>
<div class="challenges-container">
<h1>WWCode: Days Of Code Challenge</h1>
<h2>#DaysofVanillaJavaScript</h2>
<div class="challenges">
<div class="challenge-img">
<img src="media/d1.png" alt="" />
</div>
<div class="challenge-info">
<h3>Day 1 : Drum Kit π₯</h3>
<p>Play Sounds by pressing keys on the Keyboard!</p>
<br />
π»<a href="/JS30/Day-1/index.html">See Live</a> π©βπ»
<a href="https://github.com/Monika5S/JS30/tree/main/Day-1"
>Source Code</a
>
</div>
</div>
<div class="challenges">
<div class="challenge-img">
<img src="media/d2.png" alt="clock project image" />
</div>
<div class="challenge-info">
<h3>Day 2 : Clock π</h3>
<p>Could you tell me what time it is?</p>
<br />
π»<a href="/JS30/Day-2/index.html">See Live</a> π©βπ»
<a href="https://github.com/Monika5S/JS30/tree/main/Day-2">
Source Code
</a>
</div>
</div>
<div class="challenges">
<div class="challenge-img">
<img src="media/d3.png" alt="customizer preview" />
</div>
<div class="challenge-info">
<h3>Day 3 : Customizer πͺ</h3>
<p>
Let's change image container color, spacing <br />or make image
blur!
</p>
<br />
π»<a href="/JS30/Day-3/index.html">See Live</a> π©βπ»
<a href="https://github.com/Monika5S/JS30/tree/main/Day-3">
Source Code
</a>
</div>
</div>
<div class="challenges">
<div class="challenge-img">
<img src="media/d4.png" alt="array practice preview" />
</div>
<div class="challenge-info">
<h3>Day 4 : Array Cardio π―</h3>
<p>practice array functions!</p>
<br />
π»<a href="/JS30/Day-4/index.html">See Live</a> π©βπ»
<a href="https://github.com/Monika5S/JS30/tree/main/Day-4">
Source Code
</a>
</div>
</div>
<div class="challenges">
<div class="challenge-img">
<img src="media/d5.png" alt="Gallery preview" />
</div>
<div class="challenge-info">
<h3>Day 5 :Quote Gallery ποΈ</h3>
<p>Flex Panel Quote Gallery!</p>
<br />
π»<a href="/JS30/Day-5/index.html">See Live</a> π©βπ»
<a href="https://github.com/Monika5S/JS30/tree/main/Day-5">
Source Code
</a>
</div>
</div>
</div>
</body>
</html>