Files
cs2440/5min/day1/index.html
T
2025-01-23 20:06:12 +00:00

20 lines
324 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script>alert("Hello!");</script>
<style>
html {
background-color: pink;
}
</style>
</head>
<body>
<h1>First 5 Minute Website</h1>
<p>Lorem ipsum stuff.</p>
<img src="https://cdn.pixabay.com/photo/2016/07/07/16/46/dice-1502706_640.jpg" />
</body>
</html>