<button> ... </button>


زر للتفاعل أو تنفيذ إجراء مثل الإرسال.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

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

<title>Inline CSS Button Example</title>

</head>

<body>

<button type="button" style="padding: 10px 20px; background-color: #008CBA; color: white; border: none; border-radius: 5px; cursor: pointer;">

Click Me

</button>

</body>

</html>

Inline CSS Button Example