Files
CS343-Labs/Lab 5/index.html
2025-09-10 14:42:57 -04:00

28 lines
626 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Flexbox Layout</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><button id="add">Add Image</button></li>
<li><button id="spread">Spread Out</button></li>
<li><button id="rotate">Rotate Direction</button></li>
</ul>
</nav>
</header>
<main>
<img src="https://picsum.photos/200?random=1" alt="random square image" />
<img src="https://picsum.photos/200?random=2" alt="random square image" />
</main>
<script src="flex.js"></script>
</body>
</html>