HTML Button Example

Rumman Ansari   Software Engineer   2024-02-06 06:04:33   23 Share
Subject Syllabus DetailsSubject Details Login to Open Video
☰ Table of Contents

Table of Content:



HTML Button Example


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Button Example</title>
</head>
<body>
    <button type="button" id="myButton" class="important-button" data-action="submit-form" onclick="alert('Button clicked!')"> Click me</button>
</body>
</html>