PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>صفحه وب با استایل</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f8f8f8; color: #333; margin: 20px; text-align: center; } h1 { color: #0066cc; text-decoration: underline; } p { color: #333; font-size: 18px; } button { background-color: #4caf50; color: white; padding: 10px 20px; font-size: 16px; border: none; cursor: pointer; border-radius: 5px; } button:hover { background-color: #45a049; } </style> </head> <body> <h1>Hello, welcome to our website!</h1> <p>This is an example of HTML and CSS styling. We can change background color, text color, font and other features.</p> <button>click</button> </body> </html>