internal
Sun Nov 03 2024 12:45:37 GMT+0000 (Coordinated Universal Time)
Saved by
@signup1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Internal Style Example</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
#main-content {
padding: 40px;
background-color: #ffffff;
border: 1px solid #ddd;
max-width: 800px;
margin: 20px auto;
}
h1 {
color: #333;
text-align: center;
padding: 20px;
}
p {
color: #666;
font-size: 18px;
line-height: 1.6;
margin: 20px;
}
p.highlight {
color: #0056b3;
font-weight: bold;
}
</style>
</head>
<body>
<div id="main-content">
<h1>Welcome to Internal CSS Styling</h1>
<p>This is an example of internal styling. All CSS rules are within a style block in the head section.</p>
<p class="highlight">This paragraph has specific styling defined in the internal CSS.</p>
</div>
</body>
</html>
content_copyCOPY
Comments