100-Days-Of-Code/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/internal.html
2024-10-28 21:21:33 +05:30

18 lines
203 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Internal</title>
<style>
h1 {
color: red
}
</style>
</head>
<body>
<h1>Style Me in Red!</h1>
</body>
</html>