xxxxxxxxxx
<html>
<head>
<!-- CSS بواسطة mark هنا قمنا بتحديد خصائص ظهور الوسم -->
<style>
mark {
background-color: cyan;
padding: 0 5px;
}
</style>
</head>
<body>
<!-- ستظهر باللون الأزرق الفاتح <mark> خلفية الكلام الموضوع بداخل الوسم -->
<p><mark>Fast food</mark> affect your body!</p>
</body>
</html>