Commit 2453946a by Siyam Kumar

newadd

parent 8d7f2c46
.main {
background-color: aliceblue;
margin:10px;
}
.container >div { .container {
padding:10px;
text-align: center;
font-size: 2em;
color: rgb(245, 241, 236);
display: grid; display: grid;
grid-template-areas: grid-template-areas: "one two three";
"one two three" padding: 10px;
"four five "
;
} }
.one {
background-color: brown; .container>div {
}` padding: 20px 0;
.two { font-size: 30px;
height: 325px;
}
background-color: rgb(63, 228, 74); .one {
background-color:#57a890 ;
}
.two {
background-color: #ddae71;
} }
.three { .three {
background-color: #727cda;
background-color: rgb(198, 89, 89);
} }
.four { .four {
background-color: #faa46b;
background-color: rgb(204, 50, 204);
} }
.five {` .five {
background-color: #863456;
background-color: rgb(240, 8, 155);
} }
.six { .six {
background-color: #71bedd;
background-color: rgb(91, 53, 217);
} }
import React from 'react'; import React from 'react';
import Image1 from './Images/image-1.png';
const MainPage = () => { const MainPage = () => {
return ( return (
<div className='main'> <div className='main'>
<div className='container'> <div className='container'>
<div className='one'>1</div> <div className='one'><img src={Image1} alt="image" style={{height:"250px", width:"150px"}}/></div>
<div className='two'>2</div> <div className='two'>2</div>
<div className='three'>3</div> <div className='three'>3</div>
<div className='four'>4</div> <div className='four'>4</div>
<div className='five'>5</div> <div className='five'>5</div>
<div className='six'>6</div> <div className='six'>6</div>
</div> </div>
</div> </div>
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment