# CodeKids Classes Website 2
Preview Full HTMLindex.html
<html>
<head>
<title>CodeKids</title>
<link href="https://fonts.googleapis.com/css?family=Blinker&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>CodeKids</h1>
</div>
<div class="cardLayout">
<div class="card pythonC">
<h2>Python</h2>
<img src="logo/logo_python.png" alt="" class="img">
<div class="addBTN pythonB">
<a href="#" class="aAdd pythonA">+</a>
</div>
</div>
<div class="card microC">
<h2>Micro:bit</h2>
<img src="logo/logo_micro.png" alt="" class="img">
<div class="addBTN microB">
<a href="#" class="aAdd microA">+</a>
</div>
</div>
<div class="card scC">
<h2>Scratch</h2>
<img src="logo/logo_scratch.png" alt="" class="img">
<div class="addBTN scB">
<a href="#" class="aAdd ">+</a>
</div>
</div>
<div class="card youtubeC">
<h2>Youtube</h2>
<img src="logo/logo_youtube.png" alt="" class="img">
<div class="addBTN youtubeB">
<a href="#" class="aAdd ">+</a>
</div>
</div>
<div class="card lineC">
<h2>Basic Sticker Line</h2>
<img src="logo/logo_line.png" alt="" class="img">
<div class="addBTN lineB">
<a href="#" class="aAdd lineA">+</a>
</div>
</div>
<div class="card youngC">
<h2>Young Entrepreneur</h2>
<img src="logo/logo_young.png" alt="" class="img">
<div class="addBTN youngB">
<a href="#" class="aAdd">+</a>
</div>
</div>
</div>
</body>
</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
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
style.css
* {
box-sizing: border-box;
}
body {
font-family: 'Blinker', sans-serif;
background-color: rgb(255, 192, 0);
}
.header {
width: 20%;
text-align: center;
margin: 5rem 40%;
color: aliceblue;
background-color: rgb(0, 128, 0);
border-radius: 5px;
box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.46);
}
h1 {
font-size: 3rem;
}
.cardLayout {
width: 80%;
margin: 2rem 10%;
display: grid;
grid-gap: 1rem 1rem;
grid-template-columns: 1fr 1fr 1fr;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
width: 100%;
height: 65vh;
border-radius: 1rem;
background-color: whitesmoke;
box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.46);
}
h2 {
margin: 0;
font-size: 2rem;
}
.img {
height: 30vh;
}
.addBTN {
display: flex;
justify-content: center;
align-items: center;
width: 3rem;
height: 3rem;
border-radius: 50%;
background-color: rgb(0, 128, 0);
box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.46);
}
.aAdd {
text-decoration: none;
color: aliceblue;
font-size: 2rem;
}
.pythonC {
color: whitesmoke;
background-color: rgb(55, 116, 166);
}
.pythonB {
background-color: #ffce3e;
}
.pythonA {
color: black;
}
.microC {
color: whitesmoke;
background-color: #3b3b3b;
}
.microB {
background-color: #f76b00;
}
.microA {
color: #f8b702;
}
.scC {
color: whitesmoke;
background-color: #4c97ff;
}
.scB {
background-color: #ffab19;
}
.youtubeC {
color: whitesmoke;
background-color: #c30000;
}
.youtubeB {
background-color: #2c2e36;
}
.lineC {
color: whitesmoke;
background-color: #712575;
}
.lineB {
background-color: #8fed27;
}
.lineA {
color: #712575;
}
.youngC {
color: whitesmoke;
background-color: #003d59;
}
.youngB {
background-color: #fe6625;
}
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
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