zepp d850cbea87 initial project setup
add index.html, style.css, script.js
initial html and css boilerplate
add image and div container
set flex on body
2025-01-29 21:29:36 -05:00

16 lines
470 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>for you, emma</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<div class="container">
<img src="./img/sweets.jpg" alt="a box of chocolate cupcakes">
</div>
<script src="./script/script.js" defer></script>
</body>
</html>