12 lines
231 B
HTML
12 lines
231 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Styling Practice</title>
|
|
<link rel="stylesheet" href="example.css">
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to CSS Styling</h1>
|
|
<p>This paragraph is styled using CSS.</p>
|
|
</body>
|
|
</html>
|