“He deserves to be punished” Khairy Ramadan comments on the slap of artist Mohamed Ramadan

11:39 p.m

Tuesday 09 July 2024

Written by: Mustafa Hamza

The star Mohamed Ramadan caused controversy following a video clip of him slapping a young man on the North Coast went viral.

Media figure Khairy Ramadan commented on the incident on the program “With Khairy” broadcast on Al-Mahwar channel, saying: “Mohamed Ramadan is an artist who loves to interact with the audience and get down among them. He says I am a popular man and does not refuse any request to take a picture with him.”

He continued, “When the little boy was asked why he hit you with the pen, he said I went to take a picture with him and I said to him, ‘Mohamed Hamdan.’ I provoked him and was joking, so he hit me with the pen. I didn’t care and hit him with the pen. After that, the security took me for a while and his business manager came to me and the matter was over. I was surprised to find myself trending.”

Regarding the slap, Khairi said: “The pen is unacceptable, and hitting has never been a means of anger or revenge, but the boy deserves punishment. We have had for some time, and even before the Amr Diab incident, the idea of ​​daring and that the famous rich person has no rights because he is known and people love him, so he accepts everything, and if he loses his temper, he must be slaughtered.”

Commenting on the position of the star Mohamed Ramadan, he said: “This is a case of slander and defamation in front of people, and the boy is a juvenile and will be admitted to an institution, but the right has been lost and Mohamed Ramadan did not take the safest and most correct path according to the law, and his behavior is inappropriate because the star should take the boy by the hand and file a case once morest him, or apologize to him and accept his apology.”

The star Mohamed Ramadan topped the social media trending lists, with the spread of a video clip of his fight with a young man, while he was in the North Coast, and they exchanged slaps.

The star Mohamed Ramadan appeared in the video clip, which was circulated by social media users, while trying to get the young man’s phone.

After several attempts, the matter developed into an exchange of slaps between the star and the young man, as Mohamed Ramadan took the initiative to slap the young man, who slapped him back, amid attempts by those present to break up the fight.

sfarsit articol

11:39 p.m

Tuesday, July 09, 2024

Written by: Mustafa Hamza

Egyptian actor Mohamed Ramadan sparked controversy following a video clip went viral, showing him slapping a young man on the North Coast.

Media personality Khairy Ramadan commented on the incident on the program “With Khairy” aired on Al-Mahwar channel. He stated, “Mohamed Ramadan is an actor who loves interacting with his fans and being amongst them. He claims to be a ‘popular’ man and doesn’t refuse any request for a picture.”

He continued, “When the young man was asked why he hit Ramadan with a pen, he said he went to take a picture with him and said, ‘Mohamed Hamdan.’ I provoked him and was joking, so he hit me with the pen. I didn’t care and hit him with the pen too. After that, security took me away for a while and his business manager came to me, and the matter was over. I was surprised to find myself trending.”

Regarding the slap, Khairi said: “Using a pen is unacceptable, and hitting has never been a way to express anger or seek revenge, but the boy deserves punishment. For some time now, even before the Amr Diab incident, there’s been this idea that famous rich people have no rights because they’re well-known and loved, so they can accept anything. If they lose their temper, they must be punished.”

Commenting on Mohamed Ramadan’s actions, he said: “This is a case of slander and defamation in front of people. The boy is a minor and will be admitted to an institution, but the right path was not taken. Mohamed Ramadan did not choose the safest and most correct legal course of action. His behavior was inappropriate because a star should have taken the boy by the hand and filed a case once morest him, or apologized to him and accepted his apology.”

Mohamed Ramadan topped social media trending lists following the video clip of his fight with a young man on the North Coast went viral. They exchanged slaps in the video.

The video, circulated by social media users, showed Mohamed Ramadan trying to get the young man’s phone. After several attempts, the situation escalated into an exchange of slaps between the actor and the young man. Mohamed Ramadan initiated the slap, and the young man reciprocated, amid attempts by those present to break up the fight.

The

Element in HTML: A Comprehensive Guide

In the world of web development, the

element is a fundamental building block, offering unparalleled versatility and control over the structure and layout of your web pages. This comprehensive guide will delve into the intricacies of the

element, exploring its uses, attributes, and best practices.

Understanding the

Element

The

element, short for “division,” acts as a generic container for any HTML content. It’s essentially a blank slate, ready to be styled and customized to meet your specific needs. The

element itself doesn’t inherently define any specific display or semantic meaning; its role is to group, organize, and structure your content.

Key Characteristics of the

Element

  • Generic: It can hold any type of content, including text, images, videos, and other HTML elements.
  • Structural: Provides a logical way to group related content, making it easier to manage and style.
  • Styling Flexibility: You can apply CSS styles (like background colors, borders, margins, and padding) to control its appearance and layout.

Using

for Content Organization

Think of the

element as a digital building block. It lets you create sections, rows, columns, and other structural components within your web pages. Here are some common ways to use

for effective organization:

1. Defining Sections

  • Use
    to group thematic sections on your webpage. For example, a blog post with sections for the introduction, main content, and conclusion:
<div class="intro">
    <h2>Welcome to My Blog</h2>
    <p>This is an introductory section.</p>
</div>

<div class="main-content">
    <p>This is the main content of the blog post.</p>
</div>

<div class="conclusion">
    <p>This is the concluding section.</p>
</div>

2. Creating Rows

Organize elements into horizontal rows using multiple

elements, possibly with CSS flexbox or grid layout for additional control:

<div class="row">
    <div class="column">
        <h3>Column 1</h3>
        <p>Content for column 1.</p>
    </div>
    <div class="column">
        <h3>Column 2</h3>
        <p>Content for column 2.</p>
    </div>
</div>

3. Implementing Tabs or Accordions

  • The
    element is crucial for creating interactive tabs and accordions, allowing you to reveal or hide content dynamically:
<div class="tabs">
    <div class="tab-header">
        <button>Tab 1</button>
        <button>Tab 2</button>
    </div>
    <div class="tab-content">
        <!-- Content for Tab 1 -->
    </div>
    <div class="tab-content">
        <!-- Content for Tab 2 -->
    </div>
</div>

and CSS Styles

The true potential of the

element lies in its compatibility with CSS styling. You can apply both inline and external CSS styles to control its appearance and layout, giving you immense creative flexibility.

1. Inline Styles

  • Inline styles are applied directly within the
    element using the style attribute:
<div style="background-color: #f0f0f0; padding: 20px; margin-bottom: 10px;">
    <p>This is a paragraph within a styled div.</p>
</div>

2. External Stylesheets

  • Create a separate CSS file (.css) and link it to your HTML document. This approach promotes better organization and maintainability:
<div class="container">
    <p>Content within a div with styling from an external CSS file.</p>
</div>
/* In style.css */
.container {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 10px;
}

Best Practices for

Usage

While the

element offers great flexibility, it’s essential to use it responsibly and effectively. Here are some best practices to follow:

  • Semantic Meaning: Avoid over-relying on
    when more semantically relevant HTML elements, like <article>, <aside>, <footer>, or <section>, can be used.
  • Consistent Class Names: Employ meaningful and consistent class names for your
    elements to enhance code readability and maintainability.
  • CSS Specificity: Be aware of CSS specificity to ensure that the intended styles are applied correctly when working with multiple
    elements.
  • Accessibility: Ensure that any styles applied to
    elements don’t negatively impact page accessibility.

Further Considerations

  • Accessibility: Be mindful of ARIA attributes (Accessible Rich Internet Applications) if you need to add accessibility-related information to div elements.
  • HTML5: While the
    element has been available since HTML 4, it remains a core element in HTML5 and is not deprecated.

Conclusion

The

element is an essential part of the HTML toolkit, providing a foundation for organizing, structuring, and styling content within your web pages. By understanding its uses, attributes, and best practices, you can harness its power to create visually appealing and functionally robust websites.

Share:

Facebook
Twitter
Pinterest
LinkedIn

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.