<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
p {
color:white;
}
.main {
background-color:black;
height:auto;
border-radius: 20px 20px 0px 0px;
}
.left-column {
background-color:indigo;
height:120px;
width:49%;
float:left;
border-bottom-left-radius: 20px;
}
.right-column{
background-color:green;
height:7.5em;
width:49%;
float:right;
border-bottom-right-radius: 20px;
}
h1{
color:Green;
}
</
style
>
</
head
>
<
body
>
<
center
>
<
h1
>GeeksforGeeks</
h1
>
<
div
class="main">
<
p
>
Also, any geeks can help other geeks by writing
articles on the GeeksforGeeks, publishing articles
follow few steps that are Articles that need
little modification/improvement from reviewers
are published first. To quickly get your articles
reviewed, please refer existing articles, their
formatting style, coding style, and try to make
you are close to them.
</
p
>
</
div
>
<
div
class="left-column">
<
p
>
It is a good platform to learn programming. It
is an educational website. Prepare for the
Recruitment drive of product based companies
like Microsoft, Amazon, Adobe etc with a free
online placement preparation course.
</
p
>
</
div
>
<
div
class="right-column">
<
p
>
The course focuses on various MCQ's & Coding
question likely to be asked in the interviews
& make your upcoming placement season efficient
and successful.
</
p
>
</
div
>
</
center
>
</
body
>
</
html
>