Untitled
unknown
plain_text
2 years ago
1.7 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> * { margin: auto; } .container { display: flex; flex-direction: column; gap: 2rem; } header { width: 100%; display: flex; justify-content: flex-end; align-items: flex-end; } header div { width: 58%; background-color: darkgray; } aside, section, footer { background-color: darkgray; } main { width: 100%; display: flex; gap: 2%; } aside { width: 38%; } section { width: 58%; } footer { width: 86%; } </style> </head> <body> <div class="container"> <header> <div> Header </div> </header> <main> <aside>Sidbar</aside> <section> <h2>content</h2> <article> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus, aliquam? </article> </section> </main> <footer>footer</footer> </div> </body> </html>
Editor is loading...