- Moved all 578+ lines of CSS from index.html into styles.css - Updated index.html to link to external stylesheet - Improved code organization and maintainability - Better separation of concerns between HTML structure and styling - Enables better browser caching of stylesheets - Follows web development best practices 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
241 B
HTML
10 lines
241 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Calendar App</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body></body>
|
|
</html> |