test1/test.html
2025-04-10 21:51:54 -06:00

34 lines
641 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
display: flex;
}
header,footer,main,section { padding: 5px; margin: 5px; border: 1px dashed yellow;}
main {display:flex}
</style>
</head>
<body>
<header>
<h1>Hello</h1>
</header>
<main>
<section>
<article>
<header><h2>This Article</h2></header>
<section>
</section>
</article>
</section>
<aside>
</aside>
</main>
<footer>
<p>Copyright &copy; 2025</p>
</footer>
</body>
</html>