Untitled
unknown
plain_text
7 months ago
1.0 kB
1
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <div style="display: flex;"> <div style="width: 100%; height: 1000px; background-color :red; justify-content: center; align-items: center; display: flex;"> <p style="align-items: center;">SECTION 1</p> </div> <div style="width:100%; height : 1000px; background-color:yellow; justify-content: center; align-items: center; display: flex;"> <p>SECTION 2</p> </div> <div style="width:100%; height: 1000px ; background-color: blue; justify-content: center; align-items: center; display: flex;"> <p>SECTION 3</p> </div> </div> </body> </html>
Leave a Comment