-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codingal</title>
</head>
<body>
<table>
<tr>
<td>
<img src="Work.jpg" height="300" width="400">
</td>
<td>
<p><b>Codingal</b> is on a mission to inspire school kids to <b>fall in love with coding.</b>
Coding helps develop logical thinking and problem-solving skills. Coding jobs are the future.
They already contribute more than 60% of all the jobs in Science, Technology, Engineering,
and Math. WHile still in school, those who start young will be ahead of evryone by the time
they get into college. They will be <b>creators of the future.</b></p>
<p>In today's age, <b>coding</b> has become an essential skill. Coding fo kids helps them interatact
with technology better. Studies also show that it aids in holistic development of chold,
improving cognitive functioning as well as logical thinking. <b>Millstic development</b> means
evolving cognitiv, physical, and social skills of a child to prepare them better fo the
interactions with the world. Coding as an activity not only involves mental development
but also focuses on social understanding</p>
</td>
</tr>
<tr>
<td>
<button>Learn More</button>
</td>
</tr>
</table>
<br>
<br>
<br>
<br>
<div>
<div class="first">
<img src="Work.jpg" height="300" width="400">
</div>
<div class="second">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas porro architecto mollitia ex,
laborum cumque dicta quam consequuntur ad numquam ipsum quisquam, ratione nesciunt illo,
quod sequi optio reiciendis eos!</p>
</div>
</div>
<style>
body{
background-color: rgb(79, 105, 255);
}
b{
color: rgb(255, 255, 54);
}
button{
float: right;
background-color: transparent;
border-color: rgb(244, 189, 25);
border-width: 1px;
color: rgb(244, 189, 25);
}
.first{
float: left;
}
.second{
float: right;
}
</style>
</body>
</html>