<span> ... </span>


عنصر لتحديد جزء صغير من النص داخل عنصر آخر دون تغيير تدفق النص.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Inline CSS Span Example</title>

</head>

<body>

<p style="font-size: 16px; color: #333;">

This is an example of a paragraph with a

<span style="color: #e74c3c; font-weight: bold;">

highlighted span

</span>

that uses inline CSS to change its appearance.

</p>

</body>

</html>

Inline CSS Span Example

This is an example of a paragraph with a highlighted span that uses inline CSS to change its appearance.