| <!DOCTYPE html> |
| <style> |
| body { overflow: hidden; } |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr 1fr; |
| } |
| .margin-center { |
| margin-top: 10px; |
| margin-left: auto; |
| margin-right: auto; |
| } |
| .i1 { background: magenta; } |
| .i2 { background: cyan; } |
| .i3 { background: yellow; } |
| .i4 { background: lime; } |
| </style> |
| <div class="grid"> |
| <div class="i1"> |
| In a few questions, you’ll get an expert-designed investment portfolio to fit your financial needs. |
| </div> |
| <div class="i2"> |
| Open and fund your account with $10,000 or more and we’ll put your money to work. |
| </div> |
| <div class="i3"> |
| We’ll take it from here, monitoring your portfolio daily to help keep it on track. |
| </div> |
| <div class="i4 margin-center">Learn More</a> |
| </div> |