Creating Your First Webpage in Adobe Dreamweaver
Creating Your First Webpage in Adobe Dreamweaver 1. HTML Basics and Structure 1.1 HTML Document Structure A standard HTML document consists of the following sections: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My First Webpage</title> </head> <body> <h1>Welcome to My First Webpage</h1> <p>This is a simple webpage created in Dreamweaver.</p> </body> </html> 1.2 Common HTML Tags Headings: <h1> to <h6> define heading sizes. Paragraphs: <p> defines text blocks. Links: <a href="URL"> creates hyperlinks. Images: <img s...